Skip to content

Instantly share code, notes, and snippets.

@xerardoo
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xerardoo/f58fef6099a180e9ff6e to your computer and use it in GitHub Desktop.
Save xerardoo/f58fef6099a180e9ff6e to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-ajax/core-ajax.html">
<link rel="import" href="../cool-clock/cool-clock.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_ajax {
left: 640px;
top: 280px;
position: absolute;
}
#core_ajax1 {
left: 820px;
top: 390px;
position: absolute;
}
#core_ajax2 {
left: 920px;
top: 410px;
position: absolute;
}
#core_ajax3 {
left: 840px;
top: 390px;
position: absolute;
}
#cool_clock {
width: 400px;
height: 300px;
left: 910px;
top: 70px;
position: absolute;
}
</style>
<core-ajax handleas="json" method="GET" id="core_ajax" hidden></core-ajax>
<core-ajax handleas="json" method="GET" id="core_ajax1" hidden></core-ajax>
<core-ajax handleas="json" method="GET" id="core_ajax2" hidden></core-ajax>
<core-ajax handleas="json" method="GET" id="core_ajax3" hidden></core-ajax>
<cool-clock skin="fancy" 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