debug
This commit is contained in:
@@ -16,6 +16,9 @@
|
||||
runner_iframes: ['adis-krankentransporte-frame', 'adis-ownmissions-frame', /*'adis-plannedevents-frame',*/ 'adis-verbandmission-frame', 'adis-verbandmission-event-frame']
|
||||
}
|
||||
}
|
||||
__noSuchMethod__(method, args) {
|
||||
console.log(method, args);
|
||||
}
|
||||
|
||||
constructor() {
|
||||
let self = this;
|
||||
@@ -734,6 +737,7 @@
|
||||
//
|
||||
|
||||
$("#adis-setting-krankentransport-automatic").click((e) => {
|
||||
e.preventDefault();
|
||||
var tf = $(e.target).hasClass("active");
|
||||
self.ADisDB.ADisSettings.put({
|
||||
name: "Krankentransport-Automatic",
|
||||
@@ -744,6 +748,7 @@
|
||||
});
|
||||
|
||||
$("#adis-setting-full-automatic").click((e) => {
|
||||
e.preventDefault();
|
||||
var tf = $(e.target).hasClass("active");
|
||||
self.ADisDB.ADisSettings.put({
|
||||
name: "MissionsOwn-Automatic",
|
||||
@@ -754,6 +759,7 @@
|
||||
});
|
||||
|
||||
$("#adis-setting-sprechwunsch-automatic").click((e) => {
|
||||
e.preventDefault();
|
||||
var tf = $(e.target).hasClass("active");
|
||||
self.ADisDB.ADisSettings.put({
|
||||
name: "Sprechwunsch-Automatic",
|
||||
@@ -764,6 +770,7 @@
|
||||
});
|
||||
|
||||
$("#adis-setting-alliance-automatic").click((e) => {
|
||||
e.preventDefault();
|
||||
var tf = $(e.target).hasClass("active");
|
||||
self.ADisDB.ADisSettings.put({
|
||||
name: "Alliance-Automatic",
|
||||
@@ -774,6 +781,7 @@
|
||||
});
|
||||
|
||||
$("#adis-setting-alliance-automatic").click((e) => {
|
||||
e.preventDefault();
|
||||
var tf = $(e.target).hasClass("active");
|
||||
self.ADisDB.ADisSettings.put({
|
||||
name: "AllianceEvent-Automatic",
|
||||
@@ -787,13 +795,15 @@
|
||||
// Dashboard Functions
|
||||
//
|
||||
|
||||
$("#adis-open-button").click(() => {
|
||||
$("#adis-open-button").click((e) => {
|
||||
e.preventDefault();
|
||||
$("#adis-dashboard").css("display", "flex");
|
||||
$("#adis-dashboard").animate({
|
||||
opacity: 1
|
||||
}, 200);
|
||||
});
|
||||
$("#adis-dashboard-close-button").click(() => {
|
||||
$("#adis-dashboard-close-button").click((e) => {
|
||||
e.preventDefault();
|
||||
$("#adis-dashboard").animate({
|
||||
opacity: 0
|
||||
}, 200, () => {
|
||||
@@ -2491,7 +2501,7 @@
|
||||
clearTimeout(ppppp);
|
||||
}
|
||||
ppppp = setTimeout(function () {
|
||||
window.//console.log('DEBUG:::', 'Start Observer AutomaticDispose()')
|
||||
window. //console.log('DEBUG:::', 'Start Observer AutomaticDispose()')
|
||||
window.AutomaticDisposeCall = new AutomaticDispose();
|
||||
}, 250);
|
||||
}
|
||||
@@ -2511,10 +2521,10 @@
|
||||
characterDataOldValue: true
|
||||
});
|
||||
})
|
||||
|
||||
|
||||
$div.click();
|
||||
} else {
|
||||
window.//console.log('DEBUG:::', 'Start AutomaticDispose()')
|
||||
window. //console.log('DEBUG:::', 'Start AutomaticDispose()')
|
||||
window.AutomaticDisposeCall = new AutomaticDispose();
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user