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

Side by Side Diff: chrome/browser/resources/md_bookmarks/app.html

Issue 2885353002: MD Bookmarks: Prevent keyboard shortcuts when the toolbar/dialogs are focused (Closed)
Patch Set: Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/html/cr/ui/splitter.html"> 2 <link rel="import" href="chrome://resources/html/cr/ui/splitter.html">
3 <link rel="import" href="chrome://bookmarks/api_listener.html"> 3 <link rel="import" href="chrome://bookmarks/api_listener.html">
4 <link rel="import" href="chrome://bookmarks/command_manager.html"> 4 <link rel="import" href="chrome://bookmarks/command_manager.html">
5 <link rel="import" href="chrome://bookmarks/constants.html"> 5 <link rel="import" href="chrome://bookmarks/constants.html">
6 <link rel="import" href="chrome://bookmarks/dnd_manager.html"> 6 <link rel="import" href="chrome://bookmarks/dnd_manager.html">
7 <link rel="import" href="chrome://bookmarks/list.html"> 7 <link rel="import" href="chrome://bookmarks/list.html">
8 <link rel="import" href="chrome://bookmarks/router.html"> 8 <link rel="import" href="chrome://bookmarks/router.html">
9 <link rel="import" href="chrome://bookmarks/shared_vars.html"> 9 <link rel="import" href="chrome://bookmarks/shared_vars.html">
10 <link rel="import" href="chrome://bookmarks/store.html"> 10 <link rel="import" href="chrome://bookmarks/store.html">
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 </style> 67 </style>
68 <bookmarks-toolbar sidebar-width="[[sidebarWidth_]]"></bookmarks-toolbar> 68 <bookmarks-toolbar sidebar-width="[[sidebarWidth_]]"></bookmarks-toolbar>
69 <div id="main-container"> 69 <div id="main-container">
70 <div id="sidebar"> 70 <div id="sidebar">
71 <bookmarks-folder-node item-id="0" depth="-1"></bookmarks-folder-node> 71 <bookmarks-folder-node item-id="0" depth="-1"></bookmarks-folder-node>
72 </div> 72 </div>
73 <div id="splitter"></div> 73 <div id="splitter"></div>
74 <bookmarks-list></bookmarks-list> 74 <bookmarks-list></bookmarks-list>
75 </div> 75 </div>
76 <bookmarks-router></bookmarks-router> 76 <bookmarks-router></bookmarks-router>
77 <bookmarks-command-manager></bookmarks-command-manager> 77 <bookmarks-command-manager key-target="[[$$('#main-container')]]">
calamity 2017/05/19 04:09:27 I had no idea you could do this.
tsergeant 2017/06/01 03:17:05 Acknowledged.
78 </bookmarks-command-manager>
78 </template> 79 </template>
79 <script src="chrome://bookmarks/app.js"></script> 80 <script src="chrome://bookmarks/app.js"></script>
80 </dom-module> 81 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698