Skip to content

Instantly share code, notes, and snippets.

@jsphkhan
Created June 16, 2014 06:03
Show Gist options
  • Save jsphkhan/b9908af0d6fbf166a6ea to your computer and use it in GitHub Desktop.
Save jsphkhan/b9908af0d6fbf166a6ea to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../custom-element/my-element-with-ajax.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#my_element_with_ajax {
left: 330px;
top: 120px;
position: absolute;
}
</style>
<my-element-with-ajax id="my_element_with_ajax"></my-element-with-ajax>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment