fd-gulp-convert-encoding
Version:
convert file to assigned charset
28 lines (22 loc) • 587 B
JavaScript
/**
* ���Ű�ȫ
* @version 1.0.20120702
* @author changbin.wangcb
*/
(function($){
//���Ű�ȫ
function initIntegrity () {
var container = $('div.mod-integrity');
container.delegate('li', 'mouseenter', function(){
var that = $(this);
that.addClass('current');
})
.delegate('li', 'mouseleave', function(){
var that = $(this);
that.removeClass('current');
});
}
$(function(){
initIntegrity();
});
})(jQuery);