ultimate report system

This commit is contained in:
2019-09-02 20:46:05 +02:00
parent f29bd12757
commit 6dc9e5961c
7 changed files with 90 additions and 51 deletions

View File

@@ -4,12 +4,10 @@
private created: boolean;
private browser: BrowserMp;
private data: GlobalData;
public test: string;
constructor(title: string, globalData: GlobalData) {
this.title = title;
this.data = globalData;
this.test = "";
this.cefTitleCall = this.cefTitleCall.bind(this);
mp.events.add('cef_request_title', this.cefTitleCall);
@@ -17,10 +15,6 @@
this.cefCallback = this.cefCallback.bind(this);
mp.events.add('cef_inputhelper_sendvalue', this.cefCallback);
mp.events.add('submitText', (tmp) => {
this.test = tmp;
});
this.finish = this.finish.bind(this);
this.show = this.show.bind(this);
this.valueGetter = this.valueGetter.bind(this);