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
<!doctype html> | |
<html> | |
<head> | |
<title></title> | |
<meta charset="utf-8"> | |
<script src="../../../neoprene/components/webcomponentsjs/webcomponents-lite.js"></script> | |
<link rel="import" href="../../../neoprene/components/polymer/polymer.html"> | |
</head> | |
<body> |
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="../../../neoprene/components/polymer/src/expr/polymer-expr.html"> | |
<dom-module id="x-app"> | |
<template> | |
<div class="container"> | |
<template is="x-repeat" items="[[items]]"> | |
<div>[[item.name]]</div> | |
</template> |
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="../../../neoprene/components/polymer/src/expr/polymer-expr.html"> | |
<dom-module id="x-app" encapsulate> | |
<style> | |
:host { | |
display: block; | |
} |
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
<!doctype html> | |
<html> | |
<head> | |
<title></title> | |
<meta charset="utf-8"> | |
<link rel="import" href="../../neoprene/components/polymer/polymer.html"> | |
</head> | |
<body> | |
<template is="x-repeat" id="itemsTemplate"> |
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
<form is="ajax-form" action="test" method="post"> | |
<paper-radio-group id="wifi" selected="always"> | |
<paper-radio-button name="always" label="Always"></paper-radio-button> | |
<paper-radio-button name="pluggedin" label="Only when plugged in"></paper-radio-button> | |
<paper-radio-button name="never" label="Never"></paper-radio-button> | |
</paper-radio-group> | |
<input type="submit"> |
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
<core-drawer-panel> | |
<core-header-panel drawer> | |
<core-toolbar> | |
<div>Application</div> | |
</core-toolbar> | |
<div> Drawer content... </div> | |
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
<x-selector block selectable="x-item" index="{{page}}" on-select="toggleDrawer"> | |
</x-selector> | |
<x-pages selected="[[page]]"> | |
</x-pages> |
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="../core-resizable/core-resizable.html"> | |
<link rel="import" href="../core-selectable/core-selectable.html"> | |
<link rel="import" href="../x-fancy-input/x-fancy-input.html"> | |
<dom-module id="style-guide"> | |
<style> | |
style-guide { | |
display: block; |
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="../core-selectable/core-selectable.html"> | |
<link rel="import" href="../core-resizable/core-resizable.html"> | |
<dom-module id="core-pages"> | |
<style> | |
core-pages { | |
display: block; | |
} |
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
<!-- | |
@license | |
Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | |
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt | |
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | |
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt | |
Code distributed by Google as part of the polymer project is also | |
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt | |
--> | |
<link rel="import" href="../components/polymer/polymer.html"> |