Merge pull request #3758 from devansh-webkul/responsive_issue
Fixed velocity theme layout not responsive #3754
This commit is contained in:
commit
38c3b50772
File diff suppressed because one or more lines are too long
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"/js/velocity.js": "/js/velocity.js?id=1cccc6e984773916257d",
|
||||
"/js/velocity.js": "/js/velocity.js?id=db14e3a1279171f993cc",
|
||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=612d35e452446366eef7",
|
||||
"/css/velocity.css": "/css/velocity.css?id=72cf9eb7824c25e1dad8"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ $(document).ready(function () {
|
|||
},
|
||||
|
||||
isMobile: function () {
|
||||
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
|
||||
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i|/mobi/i.test(navigator.userAgent)) {
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
|
|
@ -339,7 +339,7 @@ $(document).ready(function () {
|
|||
showLoader: function () {
|
||||
$('#loader').show();
|
||||
$('.overlay-loader').show();
|
||||
|
||||
|
||||
document.body.classList.add("modal-open");
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue