OLD | NEW |
1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
4 | 4 |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
8 | 8 |
9 <dom-module name="throbber-notice"> | 9 <dom-module id="throbber-notice"> |
10 <link rel="stylesheet" href="throbber_notice.css"> | 10 <link rel="stylesheet" href="throbber_notice.css"> |
11 <template> | 11 <template> |
12 <paper-spinner dir="ltr" active></paper-spinner> | 12 <paper-spinner dir="ltr" active></paper-spinner> |
13 <div id="spinner-comment"><span>[[text]]</span></div> | 13 <div id="spinner-comment"><span>[[text]]</span></div> |
14 </template> | 14 </template> |
15 </dom-module> | 15 </dom-module> |
16 | 16 |
OLD | NEW |