Goonstation Forums
Uhh - Printable Version

+- Goonstation Forums (https://forum.ss13.co)
+-- Forum: Discussion (https://forum.ss13.co/forumdisplay.php?fid=6)
+--- Forum: Bug Reports (https://forum.ss13.co/forumdisplay.php?fid=9)
+---- Forum: Resolved (https://forum.ss13.co/forumdisplay.php?fid=16)
+---- Thread: Uhh (/showthread.php?tid=3565)



Uhh - Dabir - 11-18-2014

A round ended and I noticed a bunch of text go by afterwards

Code:
var defaultSkin = (function(){
    var panesShown = {};
    var npanes = 0;
    return {
        show: function(id) {
            if(panesShown[id]) return;
            panesShown[id] = true;
            byond('rbutton_'+id).winset({'isVisible':true,'isChecked':true});
            ++npanes;
            byond('rside').winset({left:'rbuttons'});
            byond('rpane').winset({left:id});
        },
        hide: function(id) {
            if(!panesShown[id]) return;
            delete panesShown[id];
            var button = byond('rbutton_'+id);
            button.winset({'isVisible':false});
            if(''+button.winget('isChecked') ==' true') byond('rbutton_text').winset({isChecked:true});
            var rpane = byond('rpane');
            if(rpane.winget('left') == id) rpane.winset({left:''});
            if(!--npanes) byond('rside').winset({left:''});
        }
    };
})();

Then a bunch of whitespace before the new round stuff. I dunno if this is important but it looks important.


Re: Uhh - Iatots - 11-19-2014

I think updating byond should fix it.
I still haven't, so try it out and report the results.


Re: Uhh - Dabir - 11-19-2014

I've got the latest version.


Re: Uhh - UrsulaMejor - 11-19-2014

I think it's related to the stuff they've been doing to accommodate the web client


Re: Uhh - Conor12 - 12-04-2014

I get this sometimes too.
Code:
var defaultSkin = (function(){
    var panesShown = {};
    var npanes = 0;
    return {
        show: function(id) {
            if(panesShown[id]) return;
            panesShown[id] = true;
            byond('rbutton_'+id).winset({'isVisible':true,'isChecked':true});
            ++npanes;
            byond('rside').winset({left:'rbuttons'});
            byond('rpane').winset({left:id});
        },
        hide: function(id) {
            if(!panesShown[id]) return;
            delete panesShown[id];
            var button = byond('rbutton_'+id);
            button.winset({'isVisible':false});
            if(''+button.winget('isChecked') ==' true') byond('rbutton_text').winset({isChecked:true});
            var rpane = byond('rpane');
            if(rpane.winget('left') == id) rpane.winset({left:''});
            if(!--npanes) byond('rside').winset({left:''});
        }
    };
})();

Also seems to pop up when I join #3 or #4 and forget to log in.


Re: Uhh - Winklabom - 12-04-2014

I get the same thing too.


Re: Uhh - Huff H Law - 09-18-2015

I think Wire fixed this, was something related to the web client.