Skip to content

Instantly share code, notes, and snippets.

@c0d3rm0nk3y
Created June 28, 2014 23:44
Show Gist options
  • Save c0d3rm0nk3y/9ee004efa1e80f841327 to your computer and use it in GitHub Desktop.
Save c0d3rm0nk3y/9ee004efa1e80f841327 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../speech-mic/speech-mic.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../paper-toast/paper-toast.html">
<link rel="import" href="../paper-ripple/paper-ripple.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_scaffold {
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#core_header_panel {
background-color: rgb(255, 255, 255);
}
#core_toolbar {
color: rgb(255, 255, 255);
background-color: rgb(79, 125, 201);
}
#core_menu {
font-size: 16px;
}
#core_menu1 {
font-size: 16px;
}
#core_icon {
height: 24px;
width: 24px;
}
#core_input {
opacity: 1;
}
#core_card {
width: 300px;
height: 300px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
background-color: rgb(255, 255, 255);
}
#paper_ripple {
width: 300px;
height: 300px;
}
</style>
<core-ajax auto url="http://monkey-nodejs-71725.usw1.nitrousbox.com:8080/api/GoogleNews" response on-core-response="{{ articlesRx }}" handleas="json">
</core-ajax>
<core-scaffold id="core_scaffold">
<core-header-panel mode="seamed" id="core_header_panel" navigation flex>
<core-toolbar id="core_toolbar">
<core-field id="search" icon="search" theme="core-light-theme" center horizontal layout>
<core-icon icon="search" id="core_icon"></core-icon>
<core-input placeholder="text input" value="{{ $.speech_mic.transcript }}" id="core_input" flex></core-input>
<speech-mic id="speech_mic"></speech-mic>
</core-field>
</core-toolbar>
<core-menu selected="Item2" valueattr="label" id="core_menu" theme="core-light-theme">
</core-menu>
<core-menu selected="0" id="core_menu1">
</core-menu>
<core-submenu label="Google Top Stories" icon="news" id="core_submenu">
<template id="template" repeat="{{article in articles}}"></template>
</core-submenu>
</core-header-panel>
<div id="div" tool>Monkey News App</div>
<paper-toast text="Toast!" id="paper_toast" class="core-transition core-transition-bottom"></paper-toast>
<core-card id="core_card" layout vertical>
<paper-ripple id="paper_ripple"></paper-ripple>
</core-card>
</core-scaffold>
</template>
<script>
Polymer('my-element', {
articlesRx: function () {
var s = this.$.ajax.response.slice(0);
console.log(JSON.stringify(s));
}
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment