more testing

This commit is contained in:
Jiiks 2015-10-26 03:31:10 +02:00
parent 04ef234d0f
commit a192dfd555
1 changed files with 14 additions and 0 deletions

View File

@ -119,6 +119,20 @@ Core.prototype.init = function() {
}
nextDefer();
$(document).ready(function() {
console.log("Document ready");
function finalDefer() {
console.log("FINAL DEFER");
if($(".guilds-wrapper .guilds").children().length > 0) {
console.log("Final loaded");
} else {
setTimeout(finalDefer(), 100);
}
}
});
};
Core.prototype.initSettings = function() {