Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | |
| 4 | |
| 5 <dom-module id="control-bar"> | |
| 6 <link rel="stylesheet" type="css" href="control_bar.css"> | |
| 7 <template> | |
| 8 <div id="login-header-bar" class="login-header-bar layout horizontal \ | |
|
tommycli
2016/02/08 18:45:18
I have not seen the '\' used for line continuation
Moe
2016/02/09 00:15:33
Done.
| |
| 9 end-justified"> | |
| 10 <div id="logo"></div> | |
| 11 <paper-button id="guest-user-button" on-click="handleGuestClick_" | |
| 12 i18n-content="browseAsGuest" hidden$="[[!showGuest]]"></paper-button> | |
| 13 <paper-button id="add-user-button" on-click="handleAddUserClick_" | |
| 14 i18n-content="addUser" hidden$="[[!showAddPerson]]"></paper-button> | |
| 15 </div> | |
| 16 </template> | |
| 17 <script src="chrome://md-user-manager/control_bar.js"></script> | |
| 18 </dom-module> | |
| OLD | NEW |