OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 -- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 -- Use of this source code is governed by a BSD-style license that can be |
| 4 -- found in the LICENSE file. |
| 5 --> |
| 6 |
| 7 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> |
| 8 |
| 9 <polymer-element name="volume-controller" attributes="width height value"> |
| 10 <template> |
| 11 <link rel="stylesheet" href="volume_controller.css"> |
| 12 |
| 13 <div id="background"></div> |
| 14 <input name="rawValueInput" id="rawValueInput" touch-action="manipulation" |
| 15 type="range" min="0" max="100" value="{{rawValue}}"> |
| 16 <div id="bar"> |
| 17 <div class="filled" style="height: {{rawValue}}%;"></div> |
| 18 <div class="cap left"></div> |
| 19 <div class="cap right"></div> |
| 20 </div> |
| 21 </template> |
| 22 <script src="volume_controller.js"></script> |
| 23 </polymer-element> |
OLD | NEW |