Sha256: a5d85acc6adc9551c18f19d7a8c88c9737c14a0d8319cdea3729ab1672a0cea3

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

<!--
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
-->

<%= html_import_tag "core/meta/core-meta" %>

<polymer-element name="core-transition" extends="core-meta">

  <script>
    Polymer('core-transition', {

      type: 'transition',

      go: function(node, state) {
        this.complete(node);
      },

      setup: function(node) {
      },

      teardown: function(node) {
      },

      complete: function(node) {
        this.fire('core-transitionend', null, node);
      },

      listenOnce: function(node, event, fn, args) {
        var self = this;
        var listener = function() {
          fn.apply(self, args);
          node.removeEventListener(event, listener, false);
        }
        node.addEventListener(event, listener, false);
      }

    });
  </script>
</polymer-element>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
polymer-paper-rails-0.1.0 app/assets/components/core/transition/core-transition.html.erb