Skip to content

Commit

Permalink
Capitalise panel menu items
Browse files Browse the repository at this point in the history
It's a minor thing but other options seem to be generally capitalised. This felt discordant.
  • Loading branch information
jamtur01 committed Jun 28, 2015
1 parent 20d5d0e commit f14c6ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions public/app/components/panelmeta.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ function () {
this.extendedMenu = [];

if (options.fullscreen) {
this.addMenuItem('view', 'icon-eye-open', 'toggleFullscreen(false); dismiss();');
this.addMenuItem('View', 'icon-eye-open', 'toggleFullscreen(false); dismiss();');
}

this.addMenuItem('edit', 'icon-cog', 'editPanel(); dismiss();', 'Editor');
this.addMenuItem('duplicate', 'icon-copy', 'duplicatePanel()', 'Editor');
this.addMenuItem('share', 'icon-share', 'sharePanel(); dismiss();');
this.addMenuItem('Edit', 'icon-cog', 'editPanel(); dismiss();', 'Editor');
this.addMenuItem('Duplicate', 'icon-copy', 'duplicatePanel()', 'Editor');
this.addMenuItem('Share', 'icon-share', 'sharePanel(); dismiss();');

this.addEditorTab('General', 'app/partials/panelgeneral.html');

Expand Down

0 comments on commit f14c6ef

Please sign in to comment.