- Joined
- May 12, 2018
- Messages
- 48
I have a problem with the shoutbox not loading up when I'm on mobile. If I send something , it'll load, but if I refresh the page, it's back to perpetually loading
if (thisButton.length) {
if (thisButton.length && thisButton.attr('src') !== undefined) {
![]()
This is a simple issue to fix, Should take no longer than 10 minutes including testing.
In vbshout.js find the following line:
Code:if (thisButton.length) {
and replace with the following:
Code:if (thisButton.length && thisButton.attr('src') !== undefined) {
![]()