haus system auf core geändert
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
export default class InputHelper {
|
||||
import { GlobalData } from "..";
|
||||
|
||||
export default class InputHelper {
|
||||
private title: string;
|
||||
private value: string;
|
||||
private created: boolean;
|
||||
private browser: BrowserMp;
|
||||
private data: GlobalData;
|
||||
private data: IGlobalData;
|
||||
|
||||
constructor(title: string, globalData: GlobalData) {
|
||||
constructor(title: string, globalData?: IGlobalData) {
|
||||
this.title = title;
|
||||
this.data = globalData;
|
||||
this.data = globalData || GlobalData;
|
||||
|
||||
this.cefTitleCall = this.cefTitleCall.bind(this);
|
||||
mp.events.add('cef_request_title', this.cefTitleCall);
|
||||
|
||||
Reference in New Issue
Block a user