Files
edx-platform/common/static/js/capa/annotationinput.js
Victor Shnayder c1c050a6b6 WIP on an inputtype for heroesX annotation
- has a text area for saved but (currently) ungraded comments
- has a set of tags with weights
2013-02-19 17:35:40 -05:00

12 lines
252 B
JavaScript

(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);