Skip to content

Instantly share code, notes, and snippets.

@eidmanna
Last active August 29, 2015 14:15
Show Gist options
  • Save eidmanna/61f8e029a84b41eb3168 to your computer and use it in GitHub Desktop.
Save eidmanna/61f8e029a84b41eb3168 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../ace-element/ace-element.html">
<link rel="import" href="../cool-clock/cool-clock.html">
<polymer-element name="my-element">
<template>
<style>
#ace_element {
width: 400px;
height: 300px;
left: 570px;
top: 260px;
position: absolute;
}
#cool_clock {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
}
</style>
<ace-element id="ace_element">function test() {
var x = true;
}</ace-element>
<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