Summer 2013 biggest trend
A Pen by Fabien Butazzi on CodePen.
| <link rel="import" href="../paper-checkbox/paper-checkbox.html"> | |
| <link rel="import" href="../paper-input/paper-input.html"> | |
| <link rel="import" href="../paper-button/paper-button.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; |
| <script type="text/javascript"> | |
| (function () { | |
| "use strict"; | |
| // once cached, the css file is stored on the client forever unless | |
| // the URL below is changed. Any change will invalidate the cache | |
| var css_href = './index_files/web-fonts.css'; | |
| // a simple event handler wrapper | |
| function on(el, ev, callback) { | |
| if (el.addEventListener) { | |
| el.addEventListener(ev, callback, false); |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| function parseJsonDateTime(obj) { | |
| return new Date(obj.match(/\d+/) * 1); | |
| } |
Summer 2013 biggest trend
A Pen by Fabien Butazzi on CodePen.