Skip to content

Instantly share code, notes, and snippets.

@elmor34
Created October 23, 2014 10:35
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 elmor34/326fb515ed5a3476c619 to your computer and use it in GitHub Desktop.
Save elmor34/326fb515ed5a3476c619 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-ajax/core-ajax.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_ajax {
left: 120px;
top: 100px;
position: absolute;
}
#core_ajax1 {
left: 530px;
top: 330px;
position: absolute;
}
#core_ajax2 {
left: 340px;
top: 80px;
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 url="http://api.vizidata.center/api/muhasebe/firma" handleas="json" auto method="GET" id="core_ajax2" hidden></core-ajax>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment