mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 01:23:32 +09:00
Clean up common_layout.html and merge with mobile_layout.html
This commit is contained in:
parent
32aa19e6f2
commit
65517735e0
10 changed files with 65 additions and 132 deletions
|
|
@ -933,7 +933,7 @@ function getCookie(name) {
|
|||
}
|
||||
|
||||
function is_def(v) {
|
||||
return (typeof(v)!='undefined');
|
||||
return typeof(v) != 'undefined' && v !== null;
|
||||
}
|
||||
|
||||
function ucfirst(str) {
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
waiting_obj.css("opacity", 0.0);
|
||||
var wfsr_timeout = setTimeout(function() {
|
||||
if (show_waiting_message) {
|
||||
waiting_obj.css("opacity", "").html(waiting_message).show();
|
||||
waiting_obj.css("opacity", "").show();
|
||||
}
|
||||
}, 1000);
|
||||
|
||||
|
|
@ -175,7 +175,7 @@
|
|||
waiting_obj.css("opacity", 0.0);
|
||||
var wfsr_timeout = setTimeout(function() {
|
||||
if (show_waiting_message) {
|
||||
waiting_obj.css("opacity", "").html(waiting_message).show();
|
||||
waiting_obj.css("opacity", "").show();
|
||||
}
|
||||
}, 1000);
|
||||
|
||||
|
|
@ -270,7 +270,7 @@
|
|||
waiting_obj.css("opacity", 0.0);
|
||||
var wfsr_timeout = setTimeout(function() {
|
||||
if (show_waiting_message) {
|
||||
waiting_obj.css("opacity", "").html(waiting_message).show();
|
||||
waiting_obj.css("opacity", "").show();
|
||||
}
|
||||
}, 1000);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue