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

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

Issue 2769103002: MD Bookmarks: Save and close bookmark edit dialog on 'enter' key press. (Closed)
Patch Set: Closure Created 3 years, 9 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/assert.html"> 2 <link rel="import" href="chrome://resources/html/assert.html">
3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
4 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 4 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior /iron-a11y-keys-behavior.html">
5 <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">
6 <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">
7 8
8 <dom-module id="bookmarks-edit-dialog"> 9 <dom-module id="bookmarks-edit-dialog">
9 <template> 10 <template>
10 <style include="cr-shared-style"></style> 11 <style include="cr-shared-style"></style>
11 <dialog is="cr-dialog" id="dialog"> 12 <dialog is="cr-dialog" id="dialog">
12 <div class="title">[[getDialogTitle_(isFolder_)]]</div> 13 <div class="title">[[getDialogTitle_(isFolder_)]]</div>
13 <div class="body"> 14 <div class="body">
14 <paper-input always-float-label id="name" 15 <paper-input always-float-label id="name"
(...skipping 13 matching lines...) Expand all
28 </paper-button> 29 </paper-button>
29 <paper-button id="saveButton" class="action-button" 30 <paper-button id="saveButton" class="action-button"
30 on-tap="onSaveButtonTap_"> 31 on-tap="onSaveButtonTap_">
31 $i18n{saveEdit} 32 $i18n{saveEdit}
32 </paper-button> 33 </paper-button>
33 </div> 34 </div>
34 </dialog> 35 </dialog>
35 </template> 36 </template>
36 <script src="chrome://bookmarks/edit_dialog.js"></script> 37 <script src="chrome://bookmarks/edit_dialog.js"></script>
37 </dom-module> 38 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/compiled_resources2.gyp ('k') | chrome/browser/resources/md_bookmarks/edit_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698