This commit is contained in:
Jiiks 2015-10-26 03:23:58 +02:00
parent 59998e13e7
commit b015148f21
1 changed files with 6 additions and 1 deletions

View File

@ -82,7 +82,7 @@ Core.prototype.init = function() {
//Incase were too fast
function gwDefer() {
console.log("defer");//New version is too fast?
console.log("DEFER");
if($(".guilds-wrapper").size() > 0) {
var guilds = $(".guilds li:first-child");
@ -107,6 +107,11 @@ Core.prototype.init = function() {
}
gwDefer();
$(".guilds-wrapper").load(function() {
console.log("LOAD");
});
};
Core.prototype.initSettings = function() {