Files
gerrit/polygerrit-ui/app/elements/shared/gr-dropdown
Viktar Donich 44e2ccd2ab Make it possible to add or remove change actions to overflow menu
``` js
Gerrit.install(function(plugin) {
  // Move cherry-pick button out of overflow menu.
  plugin.setActionOverflow('revision', 'cherrypick', false);
  // Move submit button out of overflow menu.
  plugin.setActionOverflow('revision', 'submit', true);
});
```

Revision and change actions are as returned by Gerrit's REST API.

Feature: Issue 5360
Change-Id: I151894b39929bd67ef0e00802c699831ab3f72fc
2017-04-20 18:38:06 -07:00
..