Skip to content

Instantly share code, notes, and snippets.

@vijaysaimutyala
Last active October 16, 2015 10:06
Show Gist options
  • Save vijaysaimutyala/842e4e12d30e03d504c6 to your computer and use it in GitHub Desktop.
Save vijaysaimutyala/842e4e12d30e03d504c6 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/topeka-datasource.html">
<link rel="import" href="../paper-slider/paper-slider.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#topeka_category {
width: 300px;
height: 300px;
left: 1020px;
top: 360px;
}
#topeka_datasource {
left: 560px;
top: 250px;
position: absolute;
}
#div {
height: 100%;
width: 100%;
overflow: hidden;
left: 0px;
top: 0px;
position: absolute;
}
#paper_slider {
left: 470px;
top: 270px;
position: absolute;
}
</style>
<topeka-datasource url="../topeka-elements/categories.json" id="topeka_datasource" hidden></topeka-datasource>
<div id="div">
<topeka-datasource url="../topeka-elements/categories.json" id="datasource" hidden></topeka-datasource>
</div>
<paper-slider value="32" id="paper_slider"></paper-slider>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment