Skip to content

Instantly share code, notes, and snippets.

@remydagostino
Created September 9, 2013 07:22
Show Gist options
  • Save remydagostino/6492420 to your computer and use it in GitHub Desktop.
Save remydagostino/6492420 to your computer and use it in GitHub Desktop.
Find duplicate ko.applyBindings
(function() {
var boundElements = [];
ko.applyBindings = function(vm, el) {
if (boundElements.indexOf(el) > -1) {
console.log("dupe", el);
}
boundElements.push(el);
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment