Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Uhh
#1
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.
#2
I think updating byond should fix it.
I still haven't, so try it out and report the results.
#3
I've got the latest version.
#4
I think it's related to the stuff they've been doing to accommodate the web client
#5
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.
#6
I get the same thing too.
#7
I think Wire fixed this, was something related to the web client.


Forum Jump:


Users browsing this thread: 1 Guest(s)