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

Side by Side Diff: chrome/browser/resources/file_manager/main.html

Issue 22880017: Fix creating a directory in the Save-as dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_manager.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;"> 7 <html i18n-values="dir:textdirection;">
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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 i18n-values="aria-label:SHARE_BUTTON_LABEL"></button> 360 i18n-values="aria-label:SHARE_BUTTON_LABEL"></button>
361 <button id="tasks" class="combobutton" menu="#tasks-menu" 361 <button id="tasks" class="combobutton" menu="#tasks-menu"
362 tabindex="3"></button> 362 tabindex="3"></button>
363 <button id="delete-button" command="#delete" tabindex="4" 363 <button id="delete-button" command="#delete" tabindex="4"
364 i18n-values="aria-label:DELETE_BUTTON_LABEL"></button> 364 i18n-values="aria-label:DELETE_BUTTON_LABEL"></button>
365 </div> 365 </div>
366 <div class=preparing-label i18n-content=PREPARING_LABEL></div> 366 <div class=preparing-label i18n-content=PREPARING_LABEL></div>
367 <div class=progress-bar> 367 <div class=progress-bar>
368 <div class=progress-track></div> 368 <div class=progress-track></div>
369 </div> 369 </div>
370 <div class="right buttonbar" id="open-panel" visibleif="open-file op en-multi-file"> 370 <div class="right buttonbar" id="open-panel"
371 visibleif="open-file open-multi-file">
371 <select class="file-type"></select> 372 <select class="file-type"></select>
372 <button class=ok disabled tabindex="7"></button> 373 <button class=ok disabled tabindex="7"></button>
373 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></butt on> 374 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></butt on>
374 </div> 375 </div>
375 </div> 376 </div>
376 <div id="unmounted-panel"></div> 377 <div id="unmounted-panel"></div>
377 <div id="format-panel"> 378 <div id="format-panel">
378 <div class="error"></div> 379 <div class="error"></div>
379 <button id="format-button" command="#format"></button> 380 <button id="format-button" command="#format"></button>
380 </div> 381 </div>
381 </div> 382 </div>
382 </div> 383 </div>
383 </div> 384 </div>
384 <div class="dialog-footer progressable" visibleif="saveas-file folder"> 385 <div class="dialog-footer progressable" tabindex="-1"
hirono 2013/08/19 03:51:06 Just curious, why the tabindex is needed?
mtomasz 2013/08/19 03:53:35 When we click on the footer we want it to get focu
386 visibleif="saveas-file folder">
385 <div class="left"> 387 <div class="left">
386 <button id="new-folder" i18n-content=NEW_FOLDER_BUTTON_LABEL 388 <button id="new-folder" i18n-content=NEW_FOLDER_BUTTON_LABEL
387 visibleif="saveas-file folder" command="#newfolder" 389 visibleif="saveas-file folder" command="#newfolder"
388 tabindex="5"> 390 tabindex="5">
389 </button> 391 </button>
390 <div id="filename-input-box"> 392 <div id="filename-input-box">
391 <div class=filename-label i18n-content=FILENAME_LABEL></div> 393 <div class=filename-label i18n-content=FILENAME_LABEL></div>
392 <input type=text spellcheck=false tabindex="6"> 394 <input type=text spellcheck=false tabindex="6">
393 </div> 395 </div>
394 <div class=preparing-label i18n-content=PREPARING_LABEL></div> 396 <div class=preparing-label i18n-content=PREPARING_LABEL></div>
395 <div class=progress-bar> 397 <div class=progress-bar>
396 <div class=progress-track></div> 398 <div class=progress-track></div>
397 </div> 399 </div>
398 </div> 400 </div>
399 <div class="right buttonbar"> 401 <div class="right buttonbar">
400 <select class="file-type"></select> 402 <select class="file-type"></select>
401 <button class=ok disabled tabindex="7"></button> 403 <button class=ok disabled tabindex="7"></button>
402 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button> 404 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button>
403 </div> 405 </div>
404 </div> 406 </div>
405 <div id="drag-container"></div> 407 <div id="drag-container"></div>
406 <iframe id="command-dispatcher" hidden></iframe> 408 <iframe id="command-dispatcher" hidden></iframe>
407 <div class="overlay-pane" id="iframe-drag-area" hidden></div> 409 <div class="overlay-pane" id="iframe-drag-area" hidden></div>
408 </body> 410 </body>
409 </html> 411 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_manager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698