Skip to content

Instantly share code, notes, and snippets.

@spark2ignite
Last active August 29, 2015 14:16
Show Gist options
  • Save spark2ignite/cea97671c3e234fc82ae to your computer and use it in GitHub Desktop.
Save spark2ignite/cea97671c3e234fc82ae to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../chart-js/chart-js.html">
<link rel="import" href="../core-input/core-input.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#chart_js {
width: 300px;
height: 200px;
left: 550px;
top: 440px;
position: absolute;
}
#input {
padding: 15px;
}
</style>
<chart-js id="chart_js"></chart-js>
<input committedvalue="asas" id="input" value="asas" placeholder="type something..." is="core-input" two flex>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment