시추정보 위치이동 제어 수정
parent
2360ffbec0
commit
61b487f129
|
|
@ -1,15 +1,19 @@
|
|||
// ================================================================
|
||||
// 함수 : OnLoad 이벤트
|
||||
// ================================================================
|
||||
addLoadEvent(initApp);
|
||||
function addLoadEvent(func) {
|
||||
var readyStateCheckInterval = setInterval(function() {
|
||||
if (document.readyState === "complete") {
|
||||
clearInterval(readyStateCheckInterval);
|
||||
func();
|
||||
}
|
||||
}, 100);
|
||||
}
|
||||
$(document).ready(function() {
|
||||
initApp();
|
||||
});
|
||||
|
||||
//addLoadEvent(initApp);
|
||||
//function addLoadEvent(func) {
|
||||
// var readyStateCheckInterval = setInterval(function() {
|
||||
// if (document.readyState === "complete") {
|
||||
// clearInterval(readyStateCheckInterval);
|
||||
// func();
|
||||
// }
|
||||
// }, 100);
|
||||
//}
|
||||
|
||||
function hole_layerOnOff() {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue