1. xml_js_filter에서 레거시 함수가 없을 때 필터를 사용하지 않도록 한 코드 제거. 문제는 다른 곳에 있습니다. 이 파일을 수정하지 마세요!

2. js_app.js 의 파일 끝 공백 제거



git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7107 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2010-01-04 09:35:23 +00:00
parent 08c1507444
commit 327997f9f3
2 changed files with 1 additions and 2 deletions

View file

@ -295,4 +295,4 @@ $(function(){ xe.broadcast(xe, 'ONREADY'); });
// load event
$(window).load(function(){ xe.broadcast(xe, 'ONLOAD'); });
})(jQuery);
})(jQuery);

View file

@ -73,7 +73,6 @@ var Validator = xe.createApp('Validator', {
})
.submit(function(){
var legacyFn = this['xe:onsubmit'];
if(typeof(legacyFn)=="undefined"||!legacyFn) return;
var hasLegacyFn = $.isFunction(legacyFn);
var bResult = hasLegacyFn?legacyFn.apply(this):self.run(this);