<오류수정>
1. PMS NO : { 5851}
2. (주요)작업내용
(1) {D:\project\newlms\2020LMSYNICTE\FO\Views\Home\Index.cshtml}
- {"모바일에서 저희 홈페이지 접속시 팝업창이 뜨지 않던데 뜨게 하는 방법좀 알려주세요."}
하단 스크립트 설정 수정하였습니다.
기존 = !is mobile()
변경 = ismobile() || window
This commit is contained in:
parent
f64e308141
commit
1c63029025
|
|
@ -260,7 +260,7 @@
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
initSearch();
|
initSearch();
|
||||||
|
|
||||||
if (!ismobile()) {
|
if (ismobile() || window) {
|
||||||
if ($("#texthide01").val() != '') {
|
if ($("#texthide01").val() != '') {
|
||||||
$.each($($("#texthide01").val().split('nptechpopuplistseparator')), function (i, p) {
|
$.each($($("#texthide01").val().split('nptechpopuplistseparator')), function (i, p) {
|
||||||
var p = p.split('nptechpopupseparator');
|
var p = p.split('nptechpopupseparator');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue