Commit 3a316b1a by agan

xg

parent 2be945bb
Showing with 5 additions and 1 deletions
...@@ -198,7 +198,11 @@ ...@@ -198,7 +198,11 @@
$(".firefly-id-btn").on("click", function () { $(".firefly-id-btn").on("click", function () {
newUserGet($(".id-login-input input").val(), 1) newUserGet($(".id-login-input input").val(), 1)
}) })
newUserGet(localStorage.uid, 2) if (localStorage.uid != undefined && localStorage.uid != "undefined") {
newUserGet(localStorage.uid, 2)
} else {
$(".box1").show()
}
if (sessionStorage.appversion != 'undefined' && sessionStorage.appversion != undefined) { if (sessionStorage.appversion != 'undefined' && sessionStorage.appversion != undefined) {
if (data.appversion >= 7400) { if (data.appversion >= 7400) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment