- has a text area for saved but (currently) ungraded comments - has a set of tags with weights
12 lines
252 B
JavaScript
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);
|