-
Notifications
You must be signed in to change notification settings - Fork 970
Reordered Hamburger Menu with layout mentioned in #1893 #3003
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -533,19 +533,10 @@ function getEditableItems (selection, editFlags) { | |
|
||
function hamburgerTemplateInit (location, e) { | ||
const template = [ | ||
{ | ||
l10nLabelId: 'new', | ||
submenu: [ | ||
CommonMenu.newTabMenuItem(), | ||
CommonMenu.newPrivateTabMenuItem(), | ||
CommonMenu.newPartitionedTabMenuItem(), | ||
CommonMenu.separatorMenuItem, | ||
CommonMenu.newWindowMenuItem() | ||
] | ||
}, | ||
CommonMenu.separatorMenuItem, | ||
CommonMenu.findOnPageMenuItem(), | ||
CommonMenu.printMenuItem(), | ||
CommonMenu.newTabMenuItem(), | ||
CommonMenu.newPrivateTabMenuItem(), | ||
CommonMenu.newPartitionedTabMenuItem(), | ||
CommonMenu.newWindowMenuItem(), | ||
CommonMenu.separatorMenuItem, | ||
{ | ||
l10nLabelId: 'zoom', | ||
|
@@ -569,7 +560,6 @@ function hamburgerTemplateInit (location, e) { | |
}] | ||
}, | ||
CommonMenu.separatorMenuItem, | ||
CommonMenu.preferencesMenuItem(), | ||
{ | ||
label: locale.translation('bookmarks'), | ||
submenu: [ | ||
|
@@ -578,14 +568,18 @@ function hamburgerTemplateInit (location, e) { | |
CommonMenu.separatorMenuItem, | ||
CommonMenu.importBookmarksMenuItem() | ||
] | ||
}, { | ||
},{ | ||
label: locale.translation('bravery'), | ||
submenu: [ | ||
CommonMenu.braveryGlobalMenuItem(), | ||
CommonMenu.braverySiteMenuItem() | ||
] | ||
}, | ||
CommonMenu.downloadsMenuItem(), | ||
CommonMenu.findOnPageMenuItem(), | ||
CommonMenu.printMenuItem(), | ||
CommonMenu.separatorMenuItem, | ||
CommonMenu.preferencesMenuItem(), | ||
CommonMenu.separatorMenuItem, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we should still prefer the Bravery menu. CC @bradleyrichter which order would you like it in? |
||
{ | ||
label: locale.translation('help'), | ||
|
@@ -597,7 +591,8 @@ function hamburgerTemplateInit (location, e) { | |
CommonMenu.reportAnIssueMenuItem(), | ||
CommonMenu.submitFeedbackMenuItem() | ||
] | ||
} | ||
}, | ||
CommonMenu.quitMenuItem() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto I don't think we should get rid of about brave and check for updates. |
||
] | ||
return template | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @brad do you want report an issue and submit feedback removed now? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should keep one of them. It promotes teamwork. : ) Chrome has Report and Issue. FX has Submit feedback. Any pref @bbondy ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bbondy @bradleyrichter I believe I misinterpreted the ticket, My mistake, excuse that |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure I understand, why was bookmarks moved into the urlbar component? It seems unrelated to the rest of the changeset.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is, It should be on another branch, not sure how it slipped in. This change is to tackle the new bookmark design.