/** * smartPop.js(?) 지우고 다시짰습니다... * SEED 3.0 페이지와 CSS에 의존성이 높습니다. * 다른곳에서는 쓰지마세요.. 안돌아가요 ㅋㅋ */ if( typeof Object.create !== 'function' ){ Object.create = function( obj ){ function F(){} F.prototype = obj; return new F(); }; } ;(function( window, document, $, undefined ){ var Modal = { init : function( options ){ var self = this; self.url = ( typeof options === 'string' ) ? options : options.url; self.options = $.extend( {}, $.SeedModal.options, ( typeof options === 'string' ) ? {} : options ); // 전체박스 self.SeedModalEl = $('
',{'id' : 'SeedModal', 'class' : 'seed-hide'}).append(''); // 아이프레임 박스 self.SeedIframeBoxEl = $('
').addClass('iframe-box seed-hide').click(false); // 아이프레임 헤더 self.SeedIframeHeader = $('
').addClass('iframe-header'); // 아이프레임 self.SeedIframeEl = $('