Push the headers for the chatbox even further down to make sure that jQuery is already loaded.
This commit is contained in:
parent
8cdf919827
commit
a0ab3864c0
2 changed files with 2 additions and 2 deletions
|
@ -382,7 +382,7 @@ YShout.prototype = {
|
||||||
same.push(this.p[i]);
|
same.push(this.p[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (var j = 0; j < same.length; j++) {
|
for (var j = 0; j < same.length; j++) {
|
||||||
$('#' + same[j].id).fadeTo(this.animSpeed, 0.8).fadeTo(this.animSpeed, 1);
|
$('#' + same[j].id).fadeTo(this.animSpeed, 0.8).fadeTo(this.animSpeed, 1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ class Chatbox extends Extension {
|
||||||
nickname = '{$user->name}';
|
nickname = '{$user->name}';
|
||||||
new YShout({ yPath: '$yPath' });
|
new YShout({ yPath: '$yPath' });
|
||||||
</script>
|
</script>
|
||||||
", 500);
|
", 5000);
|
||||||
|
|
||||||
// loads the chatbox at the set location
|
// loads the chatbox at the set location
|
||||||
$html = "<div id=\"yshout\"></div>";
|
$html = "<div id=\"yshout\"></div>";
|
||||||
|
|
Reference in a new issue