Skip to content

Instantly share code, notes, and snippets.

@AllanHasegawa
Created March 27, 2015 01:29
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 AllanHasegawa/6b3ac408b047a4a9484a to your computer and use it in GitHub Desktop.
Save AllanHasegawa/6b3ac408b047a4a9484a to your computer and use it in GitHub Desktop.
designer
<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;
}
#paper_slider {
left: 520px;
top: 220px;
position: absolute;
}
</style>
<paper-slider editable value="-1.5" min="-3" max="3" step="0.1" 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