Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
56
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="../notification-elements/notification-alert.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. #notification_alert {
  14. left: 380px;
  15. top: 440px;
  16. position: absolute;
  17. }
  18. </style>
  19. <notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
  20. </template>
  21.  
  22. <script>
  23.  
  24. Polymer({
  25.  
  26. });
  27.  
  28. </script>
  29.  
  30. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement