Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <link rel="import" href="../chart-js/chart-js.html">
  2. <link rel="import" href="../google-map/google-map-search.html">
  3.  
  4. <polymer-element name="my-element">
  5.  
  6. <template>
  7. <style>
  8. :host {
  9. position: absolute;
  10. width: 100%;
  11. height: 100%;
  12. box-sizing: border-box;
  13. }
  14. #chart_js {
  15. width: 300px;
  16. height: 200px;
  17. left: 180px;
  18. top: 210px;
  19. position: absolute;
  20. }
  21. #google_map_search {
  22. left: 260px;
  23. top: 750px;
  24. position: absolute;
  25. }
  26. #chart_js1 {
  27. width: 300px;
  28. height: 200px;
  29. left: 210px;
  30. top: 150px;
  31. position: absolute;
  32. }
  33. </style>
  34. <chart-js id="chart_js"></chart-js>
  35. <google-map-search id="google_map_search"></google-map-search>
  36. <chart-js id="chart_js1"></chart-js>
  37. </template>
  38.  
  39. <script>
  40.  
  41. Polymer({
  42.  
  43. });
  44.  
  45. </script>
  46.  
  47. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement