Skip to content

Instantly share code, notes, and snippets.

@mhuneke
Last active August 29, 2015 14:19
Show Gist options
  • Save mhuneke/c7c16090317d7558d4b8 to your computer and use it in GitHub Desktop.
Save mhuneke/c7c16090317d7558d4b8 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../ace-element/ace-element.html">
<link rel="import" href="../chart-js/chart-js.html">
<link rel="import" href="../core-ajax/core-ajax.html">
<link rel="import" href="../core-animated-pages/core-animated-pages.html">
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html">
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html">
<link rel="import" href="../core-animated-pages/transitions/slide-down.html">
<link rel="import" href="../core-animated-pages/transitions/slide-up.html">
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.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: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#ace_element {
width: 400px;
height: 300px;
left: 140px;
top: 170px;
position: absolute;
}
#chart_js {
width: 300px;
height: 200px;
left: 230px;
top: 350px;
position: absolute;
}
#topeka_app {
width: 300px;
height: 300px;
min-height: 450px;
}
#core_ajax {
left: 630px;
top: 730px;
position: absolute;
}
#core_ajax1 {
left: 1010px;
top: 730px;
}
#core_animated_pages {
width: 760px;
height: 850px;
overflow: hidden;
left: 30px;
top: 140px;
position: absolute;
background-color: rgb(238, 238, 238);
}
#section {
left: 290px;
top: 20px;
position: absolute;
}
</style>
<ace-element id="ace_element">function test() {
var x = true;
}</ace-element>
<chart-js id="chart_js"></chart-js>
<core-ajax handleas="json" method="GET" id="core_ajax" hidden></core-ajax>
<core-animated-pages selectedindex="0" notap id="core_animated_pages">
<section id="section1" active>
<section id="section" layout horizontal center center-justified>
<topeka-app selected="profile" disableleaderboard id="topeka_app" categories="[]" vertical layout></topeka-app>
</section>
</section>
<section id="section2">
</section>
</core-animated-pages>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment