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: chrome/browser/resources/md_bookmarks/edit_dialog.html

Issue 2802723003: MD Bookmarks: Remove 'enter' handler from Add/Edit dialog (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/edit_dialog.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <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"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
8 7
9 <dom-module id="bookmarks-edit-dialog"> 8 <dom-module id="bookmarks-edit-dialog">
10 <template> 9 <template>
11 <style include="cr-shared-style"></style> 10 <style include="cr-shared-style"></style>
12 <dialog is="cr-dialog" id="dialog"> 11 <dialog is="cr-dialog" id="dialog">
13 <div class="title">[[getDialogTitle_(isFolder_, isEdit_)]]</div> 12 <div class="title">[[getDialogTitle_(isFolder_, isEdit_)]]</div>
14 <div class="body"> 13 <div class="body">
15 <paper-input always-float-label id="name" 14 <paper-input always-float-label id="name"
(...skipping 16 matching lines...) Expand all
32 </paper-button> 31 </paper-button>
33 <paper-button id="saveButton" class="action-button" 32 <paper-button id="saveButton" class="action-button"
34 on-tap="onSaveButtonTap_"> 33 on-tap="onSaveButtonTap_">
35 $i18n{saveEdit} 34 $i18n{saveEdit}
36 </paper-button> 35 </paper-button>
37 </div> 36 </div>
38 </dialog> 37 </dialog>
39 </template> 38 </template>
40 <script src="chrome://bookmarks/edit_dialog.js"></script> 39 <script src="chrome://bookmarks/edit_dialog.js"></script>
41 </dom-module> 40 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/edit_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698