Last active
August 29, 2015 14:07
-
-
Save reedspool/db5b07600259e8e1bcf6 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="../ace-element/ace-element.html"> | |
<link rel="import" href="../chart-js/chart-js.html"> | |
<link rel="import" href="../speech-mic/speech-mic.html"> | |
<link rel="import" href="../core-ajax/core-ajax.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<chart-js kind="Bar" datastring="200,300,400,600,40" id="chart_js"></chart-js> | |
<speech-mic id="speech_mic"></speech-mic> | |
<core-ajax handleas="json" method="GET" id="core_ajax" 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