| Index: sky/examples/color/color-samples.sky
|
| diff --git a/sky/examples/color/color-samples.sky b/sky/examples/color/color-samples.sky
|
| deleted file mode 100644
|
| index ef2877c377bcd57d008200c63956314264a084d4..0000000000000000000000000000000000000000
|
| --- a/sky/examples/color/color-samples.sky
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -<!--
|
| -// Copyright 2015 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| --->
|
| -<import src="/sky/framework/sky-element/sky-element.sky" as="SkyElement" />
|
| -<import src="color-sample.sky" />
|
| -
|
| -<sky-element name="color-samples">
|
| -<template>
|
| - <style>
|
| - :host {
|
| - display: flex;
|
| - }
|
| - color-sample {
|
| - height: 100%;
|
| - flex: 1;
|
| - margin-left: 2px;
|
| - margin-right: 2px;
|
| - }
|
| - </style>
|
| - <template repeat="{{ colors }}">
|
| - <color-sample color="{{ cssColor }}" />
|
| - </template>
|
| -</template>
|
| -<script>
|
| -module.exports = class extends SkyElement {
|
| - created() {
|
| - this.colors = [];
|
| - }
|
| -}.register();
|
| -</script>
|
| -</sky-element>
|
|
|