This file contains hidden or 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> |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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"> |
OlderNewer