fix: events.load really at the end (inside setTimeout)
events.load must be execute inside the setTimeout before script realy fully loaded
This commit is contained in:
parent
987b984f79
commit
e8d1b37b82
|
|
@ -662,14 +662,13 @@ var tarteaucitron = {
|
|||
tarteaucitron.userInterface.respond(this, false);
|
||||
});
|
||||
}
|
||||
if(tarteaucitron.events.load) {
|
||||
tarteaucitron.events.load();
|
||||
}
|
||||
}, 500);
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
if(tarteaucitron.events.load) {
|
||||
tarteaucitron.events.load();
|
||||
}
|
||||
},
|
||||
"addService": function (serviceId) {
|
||||
"use strict";
|
||||
|
|
@ -1844,4 +1843,4 @@ var tarteaucitron = {
|
|||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue