Add missing pager.append function

pull/1216/head
Sylvain Corlay 10 years ago
parent 3feea61802
commit 0f4d3be470

@ -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