Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <link rel="import" href="../polymer/polymer.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. </style>
  14. </template>
  15.  
  16. <script>
  17.  
  18. Polymer('my-element'{
  19. showRoad: Function {
  20. }
  21.  
  22. });
  23.  
  24. </script>
  25.  
  26. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement