minify common/js/*.js

This commit is contained in:
bnu 2013-11-15 15:47:47 +09:00
parent c1231b5b71
commit ca8a8711ed
2 changed files with 560 additions and 476 deletions

View file

@ -390,6 +390,9 @@ if(jQuery) jQuery.noConflict();
click_str = " onclick=\""+url+"; return false; \""; click_str = " onclick=\""+url+"; return false; \"";
url="#"; url="#";
break; break;
default :
click_str = ' target="_blank"';
break;
} }
html += '<li '+styleText+'><a href="'+url+'"'+click_str+'>'+str+'</a></li> '; html += '<li '+styleText+'><a href="'+url+'"'+click_str+'>'+str+'</a></li> ';
@ -420,6 +423,11 @@ if(jQuery) jQuery.noConflict();
/* jQuery(document).ready() */ /* jQuery(document).ready() */
jQuery(function($) { jQuery(function($) {
// Anchor: focus move to target
$('a[href^="#"]').click(function(){
$($(this).attr('href')).attr('tabindex','0').focus();
});
/* select - option의 disabled=disabled 속성을 IE에서도 체크하기 위한 함수 */ /* select - option의 disabled=disabled 속성을 IE에서도 체크하기 위한 함수 */
if($.browser.msie) { if($.browser.msie) {
$('select').each(function(i, sels) { $('select').each(function(i, sels) {

78
common/js/xe.min.js vendored

File diff suppressed because one or more lines are too long