Created
November 6, 2014 23:32
-
-
Save reekotubbs/837936710b843a136d68 to your computer and use it in GitHub Desktop.
designer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../bower_components/polymer/polymer.html"> | |
<link rel="import" href="../bower_components/core-ajax/core-ajax.html"> | |
<polymer-element name="test-element" attributes="q"> | |
<template> | |
<core-ajax auto url="http://gdata.youtube.com/feeds/api/videos/" | |
params='{"alt":"json", "q":"{{q}}"}' | |
handleAs="json" response="{{response}}"></core-ajax> | |
<template repeat="{{response.feed.entry}}"> | |
<div>{{title.$t}}</div> | |
</template> | |
</template> | |
<script> | |
Polymer({ | |
response: null, | |
}); | |
</script> | |
</polymer-element> | |
<test-element q="chrome"></test-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment