Last active
August 29, 2015 14:10
-
-
Save jerson/c939c7d751913cff9508 to your computer and use it in GitHub Desktop.
designer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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