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

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

Issue 1725563004: Files: Add a shortcut Alt-E to open gear menu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use canExecuteAlways. Created 4 years, 10 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 <command id="sort-by-date" i18n-values="label:DATE_COLUMN_LABEL"> 108 <command id="sort-by-date" i18n-values="label:DATE_COLUMN_LABEL">
109 109
110 <!-- Shortcuts to open inspector. (Ctrl+Shift+I/J/C/B) --> 110 <!-- Shortcuts to open inspector. (Ctrl+Shift+I/J/C/B) -->
111 <command id="inspect-normal" shortcut="U+0049-Shift-Ctrl"> 111 <command id="inspect-normal" shortcut="U+0049-Shift-Ctrl">
112 <command id="inspect-console" shortcut="U+004A-Shift-Ctrl"> 112 <command id="inspect-console" shortcut="U+004A-Shift-Ctrl">
113 <command id="inspect-element" shortcut="U+0043-Shift-Ctrl"> 113 <command id="inspect-element" shortcut="U+0043-Shift-Ctrl">
114 <command id="inspect-background" shortcut="U+0042-Shift-Ctrl"> 114 <command id="inspect-background" shortcut="U+0042-Shift-Ctrl">
115 115
116 <command id="install-new-extension" 116 <command id="install-new-extension"
117 i18n-values="label:INSTALL_NEW_EXTENSION_LABEL"> 117 i18n-values="label:INSTALL_NEW_EXTENSION_LABEL">
118 <command id="open-gear-menu" shortcut="U+0045-Alt">
118 </commands> 119 </commands>
119 120
120 <cr-menu id="file-context-menu" class="chrome-menu files-menu" 121 <cr-menu id="file-context-menu" class="chrome-menu files-menu"
121 menu-item-selector="cr-menu-item,hr" showShortcuts> 122 menu-item-selector="cr-menu-item,hr" showShortcuts>
122 <cr-menu-item id="default-task-menu-item" command="#default-task" 123 <cr-menu-item id="default-task-menu-item" command="#default-task"
123 visibleif="full-page" hidden></cr-menu-item> 124 visibleif="full-page" hidden></cr-menu-item>
124 <cr-menu-item command="#open-with" 125 <cr-menu-item command="#open-with"
125 visibleif="full-page" hidden></cr-menu-item> 126 visibleif="full-page" hidden></cr-menu-item>
126 <hr id="tasks-separator" visibleif="full-page" hidden> 127 <hr id="tasks-separator" visibleif="full-page" hidden>
127 <hr id="actions-separator" hidden> 128 <hr id="actions-separator" hidden>
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 <paper-ripple fit></paper-ripple> 430 <paper-ripple fit></paper-ripple>
430 <span i18n-content="CANCEL_LABEL"></span> 431 <span i18n-content="CANCEL_LABEL"></span>
431 </button> 432 </button>
432 </div> 433 </div>
433 </div> 434 </div>
434 <div id="drag-container"></div> 435 <div id="drag-container"></div>
435 <files-tooltip></files-tooltip> 436 <files-tooltip></files-tooltip>
436 <iframe id="command-dispatcher" hidden aria-hidden="true"></iframe> 437 <iframe id="command-dispatcher" hidden aria-hidden="true"></iframe>
437 </body> 438 </body>
438 </html> 439 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698