Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <link rel="import" href="../topeka-elements/theme.html">
  2. <link rel="import" href="../topeka-elements/topeka-resources.html">
  3. <link rel="import" href="../topeka-elements/topeka-app.html">
  4. <link rel="import" href="../topeka-elements/topeka-datasource.html">
  5.  
  6. <polymer-element name="my-element">
  7.  
  8. <template>
  9. <style>
  10. :host {
  11. position: absolute;
  12. width: 100%;
  13. height: 100%;
  14. box-sizing: border-box;
  15. }
  16. #core_header_panel {
  17. width: 300px;
  18. height: 400px;
  19. left: 1800px;
  20. top: 630px;
  21. }
  22. #core_scroll_header_panel {
  23. width: 380px;
  24. height: 460px;
  25. left: 1730px;
  26. top: 670px;
  27. }
  28. #div {
  29. height: 100%;
  30. width: 100%;
  31. overflow: hidden;
  32. left: 0px;
  33. top: 0px;
  34. position: absolute;
  35. }
  36. </style>
  37. <div id="div">
  38. <topeka-app selected="profile" connected="{{ $.datasource.connected }}" disableleaderboard id="app" categories="[]" fit vertical layout></topeka-app>
  39. <topeka-datasource url="../topeka-elements/categories.json" id="datasource" hidden></topeka-datasource>
  40. </div>
  41. </template>
  42.  
  43. <script>
  44.  
  45. Polymer({
  46.  
  47. });
  48.  
  49. </script>
  50.  
  51. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement