Advertisement
Guest User

Untitled

a guest
Dec 28th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <link rel="import" href="../topeka-elements/topeka-datasource.html">
  2. <link rel="import" href="../topeka-elements/theme.html">
  3. <link rel="import" href="../topeka-elements/topeka-resources.html">
  4. <link rel="import" href="../topeka-elements/topeka-app.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. #div {
  17. height: 100%;
  18. width: 100%;
  19. overflow: hidden;
  20. left: 0px;
  21. top: 0px;
  22. position: absolute;
  23. }
  24. #topeka_app {
  25. width: 300px;
  26. height: 300px;
  27. min-height: 450px;
  28. left: 280px;
  29. top: 110px;
  30. position: absolute;
  31. }
  32. </style>
  33. <div id="div">
  34. <topeka-datasource url="../topeka-elements/categories.json" id="datasource" hidden></topeka-datasource>
  35. </div>
  36. <topeka-app selected="categories" disableleaderboard id="topeka_app" user='{"name":"a a","avatar":15,"score":0}' categories="[]" vertical layout></topeka-app>
  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