|
@@ -261,6 +261,11 @@
|
|
},
|
|
},
|
|
// 弹出层指定宽度
|
|
// 弹出层指定宽度
|
|
open: function (title, url, width, height) {
|
|
open: function (title, url, width, height) {
|
|
|
|
+ //如果是移动端,就使用自适应大小弹窗
|
|
|
|
+ if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
|
|
|
|
+ width = 'auto';
|
|
|
|
+ height = 'auto';
|
|
|
|
+ }
|
|
if ($.common.isEmpty(title)) {
|
|
if ($.common.isEmpty(title)) {
|
|
title = false;
|
|
title = false;
|
|
};
|
|
};
|
|
@@ -286,6 +291,11 @@
|
|
},
|
|
},
|
|
// 弹出层全屏
|
|
// 弹出层全屏
|
|
openFull: function (title, url, width, height) {
|
|
openFull: function (title, url, width, height) {
|
|
|
|
+ //如果是移动端,就使用自适应大小弹窗
|
|
|
|
+ if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
|
|
|
|
+ width = 'auto';
|
|
|
|
+ height = 'auto';
|
|
|
|
+ }
|
|
if ($.common.isEmpty(title)) {
|
|
if ($.common.isEmpty(title)) {
|
|
title = false;
|
|
title = false;
|
|
};
|
|
};
|