Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4502)

Unified Diff: chrome/browser/resources/bookmark_manager/main.html

Issue 1513017: Delete bookmarks with backspace on mac (Closed)
Patch Set: Fix formatting to match following line Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/bookmark_manager/main.html
diff --git a/chrome/browser/resources/bookmark_manager/main.html b/chrome/browser/resources/bookmark_manager/main.html
index 76ed34517a14d396a619c3ee299ce6d485c4f461..df511622e1a3f7c3166f729849b243155a2592ad 100644
--- a/chrome/browser/resources/bookmark_manager/main.html
+++ b/chrome/browser/resources/bookmark_manager/main.html
@@ -1545,7 +1545,8 @@ function handleCommand(e) {
}
// Delete on all platforms. On Mac we also allow Meta+Backspace.
-$('delete-command').shortcut = 'U+007F' + (cr.isMac ? ' U+0008-meta' : '');
+$('delete-command').shortcut = 'U+007F' +
+ (cr.isMac ? ' U+0008 U+0008-meta' : '');
// Enter on all platforms. Mac we also support space and Command-Down !?!
$('activate-command').shortcut = 'Enter' +
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698