| OLD | NEW |
| 1 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html"> | 1 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html"> |
| 2 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 2 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> |
| 3 <link rel="import" href="chrome://resources/html/parse_html_subset.html"> | 3 <link rel="import" href="chrome://resources/html/parse_html_subset.html"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 5 <link rel="import" href="chrome://resources/html/util.html"> | 5 <link rel="import" href="chrome://resources/html/util.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 9 | 9 |
| 10 <dom-module id="supervised-user-create-confirm"> | 10 <dom-module id="supervised-user-create-confirm"> |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 <div id="container"> | 69 <div id="container"> |
| 70 <div id="title-area" class="horizontal justified layout"> | 70 <div id="title-area" class="horizontal justified layout"> |
| 71 <span id="title">[[titleText_(profileInfo)]]</span> | 71 <span id="title">[[titleText_(profileInfo)]]</span> |
| 72 <iron-icon icon="supervisor-account"></iron-icon> | 72 <iron-icon icon="supervisor-account"></iron-icon> |
| 73 </div> | 73 </div> |
| 74 <div class="content-area"> | 74 <div class="content-area"> |
| 75 <div class="content" inner-h-t-m-l="[[htmlMessage1_(profileInfo)]]"> | 75 <div class="content" inner-h-t-m-l="[[htmlMessage1_(profileInfo)]]"> |
| 76 </div> | 76 </div> |
| 77 <div id="childlock-button-example"> | 77 <div id="childlock-button-example"> |
| 78 <iron-icon icon="lock"></iron-icon> | 78 <iron-icon icon="lock"></iron-icon> |
| 79 <span i18n-content="exitAndChildlockLabel"></span> | 79 <span>$i18n{exitAndChildlockLabel}</span> |
| 80 </div> | 80 </div> |
| 81 <div class="content" inner-h-t-m-l="[[htmlMessage2_(profileInfo)]]"> | 81 <div class="content" inner-h-t-m-l="[[htmlMessage2_(profileInfo)]]"> |
| 82 </div> | 82 </div> |
| 83 </div> | 83 </div> |
| 84 <div id="actions"> | 84 <div id="actions"> |
| 85 <paper-button id="ok" class="action secondary" on-tap="onOkTap_" | 85 <paper-button id="ok" class="action secondary" on-tap="onOkTap_"> |
| 86 i18n-content="supervisedUserCreatedDone"> | 86 $i18n{supervisedUserCreatedDone} |
| 87 </paper-button> | 87 </paper-button> |
| 88 <paper-button id="switchUser" class="action primary" | 88 <paper-button id="switchUser" class="action primary" |
| 89 on-tap="onSwitchUserTap_"> | 89 on-tap="onSwitchUserTap_"> |
| 90 [[switchUserText_(profileInfo)]] | 90 [[switchUserText_(profileInfo)]] |
| 91 </paper-button> | 91 </paper-button> |
| 92 </div> | 92 </div> |
| 93 </div> | 93 </div> |
| 94 </template> | 94 </template> |
| 95 <script src="chrome://md-user-manager/supervised_user_create_confirm.js"></scr
ipt> | 95 <script src="chrome://md-user-manager/supervised_user_create_confirm.js"></scr
ipt> |
| 96 </dom-module> | 96 </dom-module> |
| OLD | NEW |