Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <link rel="import" href="../ti-widget-analoggauge/ti-widget-analoggauge.html">
  2.  
  3. <polymer-element name="my-element">
  4.  
  5. <template>
  6. <style>
  7. :host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. }
  13. #ti_widget_analoggauge {
  14. left: 90px;
  15. top: 70px;
  16. position: absolute;
  17. width: 130px;
  18. height: 110px;
  19. }
  20. </style>
  21. <ti-widget-analoggauge id="ti_widget_analoggauge"></ti-widget-analoggauge>
  22. </template>
  23.  
  24. <script>
  25.  
  26. Polymer({
  27.  
  28. });
  29.  
  30. </script>
  31.  
  32. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement