This commit is contained in:
parent
36702dba4d
commit
949bf112cb
19
game/game.js
19
game/game.js
|
@ -22018,9 +22018,22 @@
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
},
|
},
|
||||||
exit:function(){
|
exit:function(){
|
||||||
if(navigator.app&&navigator.app.exitApp){
|
if(lib.device=='ios'){
|
||||||
navigator.app.exitApp();
|
game.saveConfig('mode');
|
||||||
}
|
if(_status){
|
||||||
|
if(_status.reloading) return;
|
||||||
|
_status.reloading=true;
|
||||||
|
}
|
||||||
|
if(_status.video&&!_status.replayvideo){
|
||||||
|
localStorage.removeItem(lib.configprefix+'playbackmode');
|
||||||
|
}
|
||||||
|
window.location.reload();
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
if(navigator.app&&navigator.app.exitApp){
|
||||||
|
navigator.app.exitApp();
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
open:function(url){
|
open:function(url){
|
||||||
if(lib.device){
|
if(lib.device){
|
||||||
|
|
Loading…
Reference in New Issue