mirror of
https://github.com/201206030/novel.git
synced 2025-04-27 07:30:50 +00:00
修复部分情况下,弹幕打开/关闭失败的bug
This commit is contained in:
parent
cf347cdf98
commit
e2f154516a
@ -1,10 +1,3 @@
|
||||
var token = localStorage.getItem("token");
|
||||
if (token) {
|
||||
$.get("/user/isLogin", { "token": token}, function (data) {
|
||||
if(data.code != 1){//未登录
|
||||
localStorage.removeItem("token");
|
||||
}})
|
||||
}
|
||||
Array.prototype.indexOf = function (val) {
|
||||
for (var i = 0; i < this.length; i++) {
|
||||
if (this[i] == val) return i;
|
||||
@ -19,6 +12,15 @@ if (token) {
|
||||
}
|
||||
};
|
||||
|
||||
var token = localStorage.getItem("token");
|
||||
if (token) {
|
||||
$.get("/user/isLogin", {"token": token}, function (data) {
|
||||
if (data.code != 1) {//未登录
|
||||
localStorage.removeItem("token");
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
function readHistory() {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user