Skip to content

Instantly share code, notes, and snippets.

@nikrich
Last active August 29, 2015 14:11
Show Gist options
  • Save nikrich/32cca620d670a097cf7e to your computer and use it in GitHub Desktop.
Save nikrich/32cca620d670a097cf7e to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-ajax/core-ajax.html">
<polymer-element name="reddit-element" attributes="subreddit">
<template>
<style>
</style>
<core-ajax url="http://www.reddit.com//r/aww/about.json" handleas="json" auto response="{{ resp }}" loading id="core_ajax" hidden></core-ajax>
<p id="p">{{ resp.data.public_description }}</p>
</template>
<script>
Polymer({
subreddit: 'aww',
resp: null
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment