OLD | NEW |
---|---|
(Empty) | |
1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> | |
2 <polymer-element name="route-details"> | |
3 <template> | |
4 <link rel="stylesheet" href="route_details.css"> | |
5 <link rel="stylesheet" href="../../media_router_common.css"> | |
mark a. foltz
2015/04/24 20:46:59
Similar comment here
apacible
2015/04/24 21:02:34
Done.
| |
6 <div> | |
7 <div id="back-to-devices" on-click="{{back}}"> | |
8 <span i18n-content="backToSinkList"></span> | |
9 </div> | |
10 <hr> | |
11 <div class="route"> | |
12 <div class="route-title"> | |
13 {{route.title}} | |
14 </div> | |
15 <div class="route-status"> | |
16 <span i18n-content="castingActivityStatus"></span> | |
17 <span class="device-name">{{sink.name}}</span> | |
18 </div> | |
19 </div> | |
20 </div> | |
21 <div> | |
22 <button class="button" on-click="{{closeRoute}}" | |
23 i18n-content="stopCastingButton"> | |
24 </button> | |
25 </div> | |
26 </template> | |
27 <script src="route_details.js"></script> | |
28 </polymer-element> | |
OLD | NEW |