| Index: sky/examples/color/color-sample.sky
|
| diff --git a/sky/examples/color/color-sample.sky b/sky/examples/color/color-sample.sky
|
| deleted file mode 100644
|
| index ef7cfed39af8d6efcc00c36ea21dbdad3d18d80d..0000000000000000000000000000000000000000
|
| --- a/sky/examples/color/color-sample.sky
|
| +++ /dev/null
|
| @@ -1,23 +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" />
|
| -
|
| -<sky-element name="color-sample" attributes="color:string">
|
| -<template>
|
| - <style>
|
| - :host {
|
| - background-color: {{ color }};
|
| - }
|
| - </style>
|
| -</template>
|
| -<script>
|
| -module.exports = class extends SkyElement {
|
| - created() {
|
| - this.color = "blue"; // "#FFFFFF";
|
| - }
|
| -}.register();
|
| -</script>
|
| -</sky-element>
|
|
|