UNPKG

@progress/telerik-jquery-report-viewer

Version:

Progress® Telerik® Report Viewer for jQuery

19 lines (15 loc) 405 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); 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;