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

Side by Side Diff: ui/file_manager/file_manager/main.html

Issue 1053123003: [menu.js] Menu.menuItemSelector has to be set before decoration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;lang:language"> 7 <html i18n-values="dir:textdirection;lang:language">
8 <head> 8 <head>
9 <!-- We have to set some default title, or chrome will use the page name. 9 <!-- We have to set some default title, or chrome will use the page name.
10 -- As soon as we init and change to a directory, we'll show the directory 10 -- As soon as we init and change to a directory, we'll show the directory
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 <cr-menu id="roots-context-menu" class="chrome-menu" > 279 <cr-menu id="roots-context-menu" class="chrome-menu" >
280 <cr-menu-item command="#unmount"></cr-menu-item> 280 <cr-menu-item command="#unmount"></cr-menu-item>
281 <cr-menu-item command="#format"></cr-menu-item> 281 <cr-menu-item command="#format"></cr-menu-item>
282 <cr-menu-item command="#remove-folder-shortcut"></cr-menu-item> 282 <cr-menu-item command="#remove-folder-shortcut"></cr-menu-item>
283 </cr-menu> 283 </cr-menu>
284 284
285 <cr-menu id="directory-tree-context-menu" class="chrome-menu" > 285 <cr-menu id="directory-tree-context-menu" class="chrome-menu" >
286 <cr-menu-item command="#create-folder-shortcut"></cr-menu-item> 286 <cr-menu-item command="#create-folder-shortcut"></cr-menu-item>
287 </cr-menu> 287 </cr-menu>
288 288
289 <cr-menu id="gear-menu" class="chrome-menu" showShortcuts> 289 <cr-menu id="gear-menu" class="chrome-menu" showShortcuts
290 menu-item-selector="cr-menu-item, hr">
290 <cr-menu-item id="gear-menu-newwindow" command="#new-window"></cr-menu-ite m> 291 <cr-menu-item id="gear-menu-newwindow" command="#new-window"></cr-menu-ite m>
291 <cr-menu-item id="gear-menu-newfolder" command="#new-folder"></cr-menu-ite m> 292 <cr-menu-item id="gear-menu-newfolder" command="#new-folder"></cr-menu-ite m>
292 <hr> 293 <hr>
293 <cr-menu-item id="gear-menu-toggle-hidden-files" 294 <cr-menu-item id="gear-menu-toggle-hidden-files"
294 command="#toggle-hidden-files"></cr-menu-item> 295 command="#toggle-hidden-files"></cr-menu-item>
295 <cr-menu-item id="gear-menu-drive-sync-settings" 296 <cr-menu-item id="gear-menu-drive-sync-settings"
296 command="#drive-sync-settings"></cr-menu-item> 297 command="#drive-sync-settings"></cr-menu-item>
297 <cr-menu-item id="gear-menu-drive-hosted-settings" 298 <cr-menu-item id="gear-menu-drive-hosted-settings"
298 command="#drive-hosted-settings"></cr-menu-item> 299 command="#drive-hosted-settings"></cr-menu-item>
299 <hr id="help-separator"> 300 <hr id="help-separator">
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 <select class="file-type" hidden tabindex="-1"></select> 496 <select class="file-type" hidden tabindex="-1"></select>
496 <button class="ok primary" disabled tabindex="5"></button> 497 <button class="ok primary" disabled tabindex="5"></button>
497 <button class="cancel secondary" i18n-content="CANCEL_LABEL" 498 <button class="cancel secondary" i18n-content="CANCEL_LABEL"
498 tabindex="6"></button> 499 tabindex="6"></button>
499 </div> 500 </div>
500 </div> 501 </div>
501 <div id="drag-container"></div> 502 <div id="drag-container"></div>
502 <iframe id="command-dispatcher" hidden aria-hidden="true"></iframe> 503 <iframe id="command-dispatcher" hidden aria-hidden="true"></iframe>
503 </body> 504 </body>
504 </html> 505 </html>
OLDNEW
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/ui/gear_menu.js ('k') | ui/webui/resources/js/cr/ui/menu.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698