| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list.
html"> | 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list.
html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list_
item.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list_
item.html"> |
| 5 <link rel="import" href="chrome://resources/html/polymer.html"> | 5 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 6 <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/iron-a11y-keys-behavior
/iron-a11y-keys-behavior.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 #networkList { | 51 #networkList { |
| 52 margin: 5px 0 10px; | 52 margin: 5px 0 10px; |
| 53 max-height: 400px; | 53 max-height: 400px; |
| 54 } | 54 } |
| 55 </style> | 55 </style> |
| 56 <div class="settings-box two-line"> | 56 <div class="settings-box two-line"> |
| 57 <div id="details" selectable | 57 <div id="details" selectable |
| 58 no-flex$="[[showSimInfo_(deviceState)]]" | 58 no-flex$="[[showSimInfo_(deviceState)]]" |
| 59 on-tap="onDetailsTap_" tabindex$="[[getTabIndex_(deviceState)]]"> | 59 on-tap="onDetailsTap_" tabindex$="[[getTabIndex_(deviceState)]]"> |
| 60 <cr-network-list-item item="[[activeNetworkState]]"> | 60 <cr-network-list-item item="[[activeNetworkState]]" class="flex"> |
| 61 </cr-network-list-item> | 61 </cr-network-list-item> |
| 62 <paper-spinner active="[[scanningIsActive_(deviceState, expanded_)]]" | 62 <paper-spinner active="[[scanningIsActive_(deviceState, expanded_)]]" |
| 63 hidden$="[[!scanningIsVisible_(deviceState)]]"> | 63 hidden$="[[!scanningIsVisible_(deviceState)]]"> |
| 64 </paper-spinner> | 64 </paper-spinner> |
| 65 </div> | 65 </div> |
| 66 | 66 |
| 67 <template is="dom-if" if="[[showSimInfo_(deviceState)]]"> | 67 <template is="dom-if" if="[[showSimInfo_(deviceState)]]"> |
| 68 <network-siminfo editable class="flex" | 68 <network-siminfo editable class="flex" |
| 69 network-properties="[[getCellularState_(deviceState)]]" | 69 network-properties="[[getCellularState_(deviceState)]]" |
| 70 networking-private="[[networkingPrivate]]"> | 70 networking-private="[[networkingPrivate]]"> |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 <div class="button-row" actionable on-tap="onKnownNetworksTap_"> | 105 <div class="button-row" actionable on-tap="onKnownNetworksTap_"> |
| 106 <a is="action-link">$i18n{knownNetworksButton}</a> | 106 <a is="action-link">$i18n{knownNetworksButton}</a> |
| 107 </div> | 107 </div> |
| 108 </template> | 108 </template> |
| 109 </div> | 109 </div> |
| 110 </iron-collapse> | 110 </iron-collapse> |
| 111 </template> | 111 </template> |
| 112 </template> | 112 </template> |
| 113 <script src="network_summary_item.js"></script> | 113 <script src="network_summary_item.js"></script> |
| 114 </dom-module> | 114 </dom-module> |
| OLD | NEW |