str
This commit is contained in:
parent
ca482370f4
commit
9b63d36c8f
|
@ -18165,11 +18165,13 @@
|
||||||
}
|
}
|
||||||
return cards;
|
return cards;
|
||||||
},
|
},
|
||||||
verticalStr:function(str){
|
verticalStr:function(str,sp){
|
||||||
if(typeof str!='string') return '';
|
if(typeof str!='string') return '';
|
||||||
|
str=str.toUpperCase();
|
||||||
var str2='';
|
var str2='';
|
||||||
for(var i=0;i<str.length;i++){
|
for(var i=0;i<str.length;i++){
|
||||||
str2+=str[i];
|
str2+=str[i];
|
||||||
|
if(sp&&str[i]=='S'&&str[i+1]=='P') continue;
|
||||||
if(i<str.length-1){
|
if(i<str.length-1){
|
||||||
str2+='<br>';
|
str2+='<br>';
|
||||||
}
|
}
|
||||||
|
@ -18185,7 +18187,7 @@
|
||||||
else if(str2.indexOf('界sp')==0){
|
else if(str2.indexOf('界sp')==0){
|
||||||
str2=str2.slice(3);
|
str2=str2.slice(3);
|
||||||
}
|
}
|
||||||
return get.verticalStr(str2);
|
return get.verticalStr(str2,true);
|
||||||
},
|
},
|
||||||
time:function(){
|
time:function(){
|
||||||
if(lib.status.dateDelaying){
|
if(lib.status.dateDelaying){
|
||||||
|
|
Loading…
Reference in New Issue