Merge branch 'feature/victor/annotation-input' into feature/abarrett/annotatable_xmodule

This commit is contained in:
Arthur Barrett
2013-02-20 11:32:46 -05:00
4 changed files with 99 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
(function () {
var update = function() {
alert("o hi");
};
var inputs = $('.annotation-input input');
// update on load
inputs.each(update);
// and on every change
inputs.bind("input", update);
}).call(this);