Skip to content

Instantly share code, notes, and snippets.

@windlessuser
Last active August 29, 2015 14:14
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 windlessuser/512aca330dfb856c5e1c to your computer and use it in GitHub Desktop.
Save windlessuser/512aca330dfb856c5e1c to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
#cachable_ajax {
left: 420px;
top: 300px;
position: absolute;
}
</style>
<cachable-ajax url="http://gdata.youtube.com/feeds/api/videos/" handleas="json" auto params='{"alt":"json", "q":"chrome"}' id="cachable_ajax" on-core-response key="localStorageKey" hidden></cachable-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