Sha256: d1f193ad445c6e63d9c000814b6921bebb11b5a9254be2e5121999308b99c28d

Contents?: true

Size: 574 Bytes

Versions: 1

Compression:

Stored size: 574 Bytes

Contents

<!--
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.
-->
<polymer-element name="x-foo">
  <template>
    It LIVES <content></content>
    <x-bar label="{{label}}"></x-bar>
  </template>
  <script>
    Polymer('x-foo', {
      label: '',
      ready: function(root) {
        this.textContent = 'cordon bleu';
        this.blueate();
      },
      blueate: function() {
        this.style.backgroundColor = 'lightblue';
      }
    });
  </script>
</polymer-element>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rack-polymer-0.3.0 examples/public/x-foo.html