17523934 * 플로그인 로드 함수 제거

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5079 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2008-12-15 05:32:10 +00:00
parent 6fa6782fd0
commit 22deaa7c34

View file

@ -127,34 +127,6 @@ if(jQuery) jQuery.noConflict();
}
}
/**
* jQuery 플러그인 로드
* 시험중
*/
$.getPlugin = function(name, options) {
$.loaded_plugin = new Array();
var version = '';
var defaults = {
version:'',
prefix:'jquery.',
path:'./common/js/jquery/'
};
var options = $.extend(defaults, options || {});
if(options.version) version = '-' + options.version;
$.ajax({
type: 'GET',
url : options.path + options.prefix + name + version + '.js',
cache : true,
async:false,
success : function() {
$.loaded_plugin[name] = {'version':options.version};
},
dataType : 'script'
});
}
}) (jQuery);
/* jQuery(document).ready() */