fix
This commit is contained in:
parent
4494f2d3ce
commit
154321ffc1
|
@ -11084,6 +11084,7 @@
|
||||||
lib.message.client[message.shift()].apply(null,message);
|
lib.message.client[message.shift()].apply(null,message);
|
||||||
},
|
},
|
||||||
onerror:function(e){
|
onerror:function(e){
|
||||||
|
if(this._nocallback) return;
|
||||||
if(_status.connectCallback){
|
if(_status.connectCallback){
|
||||||
_status.connectCallback(false);
|
_status.connectCallback(false);
|
||||||
delete _status.connectCallback;
|
delete _status.connectCallback;
|
||||||
|
@ -21311,7 +21312,12 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
var list=ui.create.div('.caption');
|
var list=ui.create.div('.caption');
|
||||||
list.style.maxHeight='350px';
|
if(lib.config.layout=='phone'){
|
||||||
|
list.style.maxHeight='250px';
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
list.style.maxHeight='350px';
|
||||||
|
}
|
||||||
list.style.overflow='scroll';
|
list.style.overflow='scroll';
|
||||||
lib.setScroll(list);
|
lib.setScroll(list);
|
||||||
uiintro.contentContainer.style.overflow='hidden';
|
uiintro.contentContainer.style.overflow='hidden';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
window.noname_update={
|
window.noname_update={
|
||||||
version:'1.8.4.2',
|
version:'1.8.4.2',
|
||||||
changeLog:[
|
changeLog:[
|
||||||
'修复无懈bug',
|
'修bug',
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue