Created
March 16, 2015 09:19
-
-
Save rapier83/5469c0a711c579900603 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or 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 href="../ace-element/ace-element.html" rel="import"> | |
<link href="../chart-js/chart-js.html" rel="import"> | |
<link href="../google-map/google-map.html" rel="import"> | |
<link href="../code-mirror/code-mirror.html" rel="import"> | |
<link href="../cool-clock/cool-clock.html" rel="import"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#design_host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
top: 0px; | |
left: 0px; | |
} | |
#ace_element { | |
width: 400px; | |
height: 300px; | |
left: 1110px; | |
top: 530px; | |
position: absolute; | |
} | |
#chart_js { | |
width: 300px; | |
height: 200px; | |
left: 1180px; | |
top: 180px; | |
position: absolute; | |
} | |
#chart_js1 { | |
width: 300px; | |
height: 200px; | |
left: 1310px; | |
top: 570px; | |
position: absolute; | |
} | |
#code_mirror { | |
width: 400px; | |
height: 300px; | |
left: 450px; | |
top: 50px; | |
position: absolute; | |
} | |
#google_map { | |
width: 400px; | |
height: 400px; | |
display: block; | |
left: 40px; | |
top: 50px; | |
position: absolute; | |
} | |
#cool_clock { | |
width: 400px; | |
height: 300px; | |
left: 450px; | |
top: 370px; | |
position: absolute; | |
} | |
</style> | |
<ace-element id="ace_element">function test() { | |
var x = true; | |
}</ace-element> | |
<chart-js id="chart_js"></chart-js> | |
<chart-js id="chart_js1"></chart-js> | |
<google-map latitude="65.804821379274" longitude="-133.33983015625" zoom="1" id="google_map"></google-map> | |
<code-mirror value="<polymer-element name='my-element'> | |
<template></template> | |
<script> | |
Polymer('my-element', {}); | |
</script> | |
</polymer-element>" id="code_mirror" class="aaaa"> | |
<polymer-element name="my-element"> | |
<template></template> | |
<script async text=" | |
Polymer('my-element', {}); | |
"> | |
Polymer('my-element', {}); | |
</script> | |
</polymer-element> | |
</code-mirror> | |
<cool-clock id="cool_clock"></cool-clock> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment