OLD | NEW |
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v0_8/polymer/polymer.html"> |
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 2 <link rel="import" href="chrome://resources/polymer/v0_8/paper-button/paper-butt
on.html"> |
3 <dom-module id="route-details"> | 3 <dom-module id="route-details"> |
4 <link rel="import" type="css" href="../../media_router_common.css"> | 4 <link rel="import" type="css" href="../../media_router_common.css"> |
5 <link rel="import" type="css" href="route_details.css"> | 5 <link rel="import" type="css" href="route_details.css"> |
6 <template> | 6 <template> |
7 <div> | 7 <div> |
8 <div id="back-to-devices" on-click="back_"> | 8 <div id="back-to-devices" on-click="back_"> |
9 <!-- TODO(apacible): The second <span> is a workaround for | 9 <!-- TODO(apacible): The second <span> is a workaround for |
10 https://github.com/Polymer/polymer/issues/1571. Remove here and | 10 https://github.com/Polymer/polymer/issues/1571. Remove here and |
11 elsewhere once this is fixed. --> | 11 elsewhere once this is fixed. --> |
12 <span>[[backToSinkPickerText_]]</span> | 12 <span>[[backToSinkPickerText_]]</span> |
13 </div> | 13 </div> |
14 <hr> | 14 <hr> |
15 <div id="route-information"> | 15 <div id="route-information"> |
16 <div id="route-title"> | 16 <div id="route-title"> |
17 <span>[[route.title]]</span> | 17 <span>[[route.title]]</span> |
18 </div> | 18 </div> |
19 <div id="route-status"> | 19 <div id="route-status"> |
20 <span>[[activityStatus_]]</span> | 20 <span>[[activityStatus_]]</span> |
21 </div> | 21 </div> |
22 </div> | 22 </div> |
23 </div> | 23 </div> |
24 <div> | 24 <div> |
25 <paper-button raised class="button" on-click="closeRoute_"> | 25 <paper-button raised class="button" on-click="closeRoute_"> |
26 <span>[[stopCastingButtonText_]]</span> | 26 <span>[[stopCastingButtonText_]]</span> |
27 </paper-button> | 27 </paper-button> |
28 </div> | 28 </div> |
29 </template> | 29 </template> |
30 <script src="route_details.js"></script> | 30 <script src="route_details.js"></script> |
31 </dom-module> | 31 </dom-module> |
OLD | NEW |