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

Commit

Permalink
add empty bindFinished method on Node.
Browse files Browse the repository at this point in the history
This signal can be used by an element which wishes to delay construction until it has received all bindings that it will receive.

R=arv
BUG=

Review URL: https://codereview.appspot.com/88560043
  • Loading branch information
rafaelw committed Apr 16, 2014
1 parent b040e79 commit c47bc1b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/NodeBind.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
console.error('Unhandled binding to Node: ', this, name, observable);
};

Node.prototype.bindFinished = function() {};

function updateBindings(node, name, binding) {
var bindings = node.bindings_;
if (!bindings)
Expand Down

0 comments on commit c47bc1b

Please sign in to comment.