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> | |
</core-header-panel> | |
<core-header-panel main> | |
<core-toolbar> |
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> | |
<script src="../../../platform/platform.js"></script> | |
<link rel="import" href="../../polymer.html"> | |
</head> | |
<body> | |
<polymer-element name="x-foo" noscript> | |
<template>x-foo</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="../polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
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="../paper-calculator/paper-calculator.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
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="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
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> | |
<!-- | |
Copyright 2013 The Polymer Authors. All rights reserved. | |
Use of this source code is governed by a BSD-style | |
license that can be found in the LICENSE file. | |
--> | |
<html> | |
<head> | |
<title>polymer-ui-menu</title> |
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
<!-- using polymer icon set --> | |
<polymer-ui-toolbar> | |
<polymer-ui-icon-button icon="menu"></polymer-ui-icon-button> | |
<div flex>polymer icon set</div> | |
<polymer-ui-icon-button icon="trash"></polymer-ui-icon-button> | |
</polymer-ui-toolbar> | |
<br><br> | |
<polymer-ui-menu selected="0"> | |
<polymer-ui-menu-item icon="add" label="Add"></polymer-ui-menu-item> |
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
<!-- use default polymer icon set --> | |
<polymer-ui-icon-button icon="menu"></polymer-ui-icon-button> | |
<polymer-ui-icon-button icon="trash"></polymer-ui-icon-button> | |
<polymer-ui-menu-item icon="add" label="Add"></polymer-ui-menu-item> | |
<polymer-ui-menu-item icon="trash" label="Trash"></polymer-ui-menu-item> | |
<polymer-ui-menu-item icon="settings" label="Settings"></polymer-ui-menu-item> | |
<!-- register user defined icon set (note: polymer-ui-iconset isa polymer-meta) --> | |
<polymer-ui-iconset id="my-icons" src="../assets/my-icons.png" width="1000" iconsize="40" |
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> | |
<!-- | |
Copyright 2013 The Polymer Authors. All rights reserved. | |
Use of this source code is governed by a BSD-style | |
license that can be found in the LICENSE file. | |
--> | |
<html> | |
<head> | |
<title>polymer-ui-tabs</title> | |
<script src="../../polymer/polymer.js"></script> |
NewerOlder