Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Allow stamping after 'polymer-ready' by using Polymer.whenPolymerRead…
Browse files Browse the repository at this point in the history
…y instead.
  • Loading branch information
sorvell committed May 29, 2014
1 parent 84ff914 commit bea0c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/auto-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
this.syntax = this.bindingDelegate = this.makeSyntax();
// delay stamping until polymer-ready so that auto-binding is not
// required to load last.
addEventListener('polymer-ready', function() {
Polymer.whenPolymerReady(function() {
this.model = this;
this.setAttribute('bind', '');
// we don't bother with an explicit signal here, we could ust a MO
Expand Down

0 comments on commit bea0c39

Please sign in to comment.