@progress/telerik-jquery-report-viewer
Version:
Progress® Telerik® Report Viewer for jQuery
17 lines (14 loc) • 341 B
JavaScript
;
class ToolbarButton {
constructor(element, command) {
this._element = element;
this._command = command;
this._initButton();
}
_initButton() {
const options = {};
options.icon = this._element.dataset.icon;
new kendo.ui.Button(this._element, options);
}
}
exports.ToolbarButton = ToolbarButton;