EmbyCrackedClient/web/modules/viewmanager/basewidget.js
2025-06-25 11:46:04 +08:00

1 line
No EOL
372 B
JavaScript

function BaseWidget(view,params){this.view=view,this.params=params}BaseWidget.prototype.onBeginResume=function(options){this.paused=!1},BaseWidget.prototype.onResume=function(options){this.paused=!1},BaseWidget.prototype.onPause=function(){this.paused=!0},BaseWidget.prototype.destroy=function(){this.paused=null,this.view=null,this.params=null};export default BaseWidget;