Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: bower_components/core-style/demo.html

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bower_components/core-style/core-style.html ('k') | bower_components/core-style/elements.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bower_components/core-style/demo.html
diff --git a/bower_components/core-style/demo.html b/bower_components/core-style/demo.html
deleted file mode 100644
index 0681c6cca706632380a04e6ea9106a5e041564a1..0000000000000000000000000000000000000000
--- a/bower_components/core-style/demo.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<!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>core-style</title>
- <script src="../platform/platform.js"></script>
-
- <link rel="import" href="elements.html">
- <link rel="import" href="my-theme.html">
-
-</head>
-<body unresolved fullbleed vertical layout>
- <core-style ref="main"></core-style>
-
- <template is="auto-binding">
- <my-toolbar>
- <span flex>core-style</span>
- <input type="color" value="{{g.theme.colorOne}}">
- <input type="color" value="{{g.theme.colorTwo}}">
- <input type="color" value="{{g.theme.colorThree}}">
- <input type="range" min="1" max="8" value="{{g.columns}}">
- <button>A button</button>
- </my-toolbar>
- <section flex horizontal wrap layout>
- <template repeat="{{item in items}}">
- <my-panel>{{item}}</my-panel>
- </template>
- </section>
- </template>
-
- <script>
- (function() {
-
- addEventListener('polymer-ready', function() {
- var items = [];
- for (var i=0; i < 100; i++) {
- items.push(i);
- }
-
- CoreStyle.g.items = items;
-
- addEventListener('template-bound', function(e) {
- e.target.g = CoreStyle.g;
- e.target.items = items;
- });
- });
-
- })();
- </script>
-
-</body>
-</html>
-
-
« no previous file with comments | « bower_components/core-style/core-style.html ('k') | bower_components/core-style/elements.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698