Skip to content

Instantly share code, notes, and snippets.

@jerson
Last active August 29, 2015 14:10
Show Gist options
  • Save jerson/c939c7d751913cff9508 to your computer and use it in GitHub Desktop.
Save jerson/c939c7d751913cff9508 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../ace-element/ace-element.html">
<link rel="import" href="../paper-progress/paper-progress.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-item/paper-item.html">
<polymer-element name="my-element">
<template>
<style>
#ace_element {
width: 400px;
height: 300px;
left: 190px;
top: 50px;
position: absolute;
}
#paper_progress {
left: 390px;
top: 220px;
position: absolute;
}
#paper_item {
left: 240px;
top: 280px;
position: absolute;
}
</style>
<ace-element id="ace_element">function test() {
var x = true;
}</ace-element>
<paper-progress id="paper_progress"></paper-progress>
<paper-item id="paper_item" icon="settings" label="Item"></paper-item>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment