Skip to content

Instantly share code, notes, and snippets.

@jacaetevha
Created October 22, 2014 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacaetevha/6a1d1a1551480dc8991e to your computer and use it in GitHub Desktop.
Save jacaetevha/6a1d1a1551480dc8991e to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/topeka-datasource.html">
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-app.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: static;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#topeka_datasource {
left: 730px;
top: 150px;
position: absolute;
}
#topeka_datasource1 {
left: 720px;
top: 150px;
position: absolute;
}
#app {
left: 460px;
top: 360px;
position: absolute;
}
</style>
<topeka-datasource url="../topeka-elements/categories.json" id="topeka_datasource" hidden></topeka-datasource>
<topeka-datasource url="../topeka-elements/categories.json" id="topeka_datasource1" hidden></topeka-datasource>
<topeka-app selected="categories" connected="{{ $.datasource.connected }}" disableleaderboard id="app" user='{"name":"Jason R","avatar":16,"score":0}' categories="[]" fit vertical layout></topeka-app>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment