Merge pull request #1216 from SylvainCorlay/pager-append

Add missing pager.append function
Min RK 10 years ago
commit b98af08158

@ -160,6 +160,14 @@ define([
this.pager_element.find(".container").append($('<pre/>').html(utils.fixCarriageReturn(utils.fixConsole(text))));
};
Pager.prototype.append = function (htm) {
/**
* The only user content injected with this HTML call is escaped by
* the fixConsole() method.
*/
this.pager_element.find(".container").append(htm);
};
Pager.prototype._resize = function() {
/**

Loading…
Cancel
Save