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

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

Issue 2954273002: [MD Bookmarks] Restore focus after closing a dialog or context menu. (Closed)
Patch Set: fix deps Created 3 years, 5 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 2
3 <link rel="import" href="chrome://resources/html/assert.html"> 3 <link rel="import" href="chrome://resources/html/assert.html">
4 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 4 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
5 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 5 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
8 <link rel="import" href="chrome://bookmarks/dialog_focus_manager.html">
8 9
9 <dom-module id="bookmarks-edit-dialog"> 10 <dom-module id="bookmarks-edit-dialog">
10 <template> 11 <template>
11 <style include="cr-shared-style"></style> 12 <style include="cr-shared-style"></style>
12 <dialog is="cr-dialog" id="dialog"> 13 <dialog is="cr-dialog" id="dialog">
13 <div class="title">[[getDialogTitle_(isFolder_, isEdit_)]]</div> 14 <div class="title">[[getDialogTitle_(isFolder_, isEdit_)]]</div>
14 <div class="body"> 15 <div class="body">
15 <paper-input always-float-label id="name" 16 <paper-input always-float-label id="name"
16 label="$i18n{editDialogNameInput}" 17 label="$i18n{editDialogNameInput}"
17 value="{{titleValue_}}" 18 value="{{titleValue_}}"
(...skipping 14 matching lines...) Expand all
32 </paper-button> 33 </paper-button>
33 <paper-button id="saveButton" class="action-button" 34 <paper-button id="saveButton" class="action-button"
34 on-tap="onSaveButtonTap_"> 35 on-tap="onSaveButtonTap_">
35 $i18n{saveEdit} 36 $i18n{saveEdit}
36 </paper-button> 37 </paper-button>
37 </div> 38 </div>
38 </dialog> 39 </dialog>
39 </template> 40 </template>
40 <script src="chrome://bookmarks/edit_dialog.js"></script> 41 <script src="chrome://bookmarks/edit_dialog.js"></script>
41 </dom-module> 42 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/dialog_focus_manager.js ('k') | chrome/browser/resources/md_bookmarks/edit_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698