v2 update

This commit is contained in:
2018-11-28 20:13:23 +01:00
parent d18218a1ab
commit fcc1f7276d
3 changed files with 16 additions and 22 deletions

19
dist/autoloaderV2.js vendored
View File

@@ -1,4 +1,4 @@
/*Generated on:Wed Nov 28 2018 20:10:52 GMT+0100 (CET)*/
/*Generated on:Wed Nov 28 2018 20:13:23 GMT+0100 (CET)*/
/*
* Dexie.js - a minimalistic wrapper for IndexedDB
* ===============================================
@@ -6893,14 +6893,11 @@ class AutomaticDispose {
}
ADSettings() {
let that = this;
return (async () => {
var res = {};
await that.ADisDB.ADisSettings.each((setting) => {
res[setting.name] = setting.value;
});
return res;
})()
var res = {};
await this.ADisDB.ADisSettings.each((setting) => {
res[setting.name] = setting.value;
});
return res;
}
get WindowName() {
@@ -6953,7 +6950,7 @@ class AutomaticDispose {
OpenNextRescueSprechwunsch() {
let that = this;
this.ADSettings.then((setting) => {
this.ADSettings().then((setting) => {
if (setting['Sprechwunsch-Automatic'] == 'true') {
return that.ADisDB.ADisSprechwunsch.where({
done: 'false'
@@ -7044,7 +7041,7 @@ class AutomaticDispose {
OpenNextPoliceSprechwunsch() {
let that = this;
this.ADSettings.then((setting) => {
this.ADSettings().then((setting) => {
if (setting['Sprechwunsch-Automatic'] == 'true') {
return that.ADisDB.ADisSprechwunschPolice.where({
done: 'false'