You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AdminLTE/build/js/Widget.js

26 lines
375 B

/**
* --------------------------------------------
* AdminLTE Widget.js
* License MIT
* --------------------------------------------
*/
const Widget = (($) => {
class Widget {
constructor(element) {
this._element = element
}
static _jQueryInterface(element) {
$(element).show()
}
}
return Widget
})(jQuery)
export default Widget