bindable.js icon indicating copy to clipboard operation
bindable.js copied to clipboard

only trigger computed property when all args are defined

Open crcn opened this issue 11 years ago • 0 comments

This follows the data-binding behavior.

bindable.bind("firstName, lastName", {
  to: function (firstName, lastName) {

  }
});

bindable.set("firstName", "abba"); // not triggered
bindable.set("lastName", "baab"); // finally triggered

crcn avatar May 23 '14 18:05 crcn