config.js 588 Bytes
/**
 * 页面模块加载配置
 *
 */
var _version = window.GLOBAL && window.GLOBAL.version ?  window.GLOBAL.version : '?'+( new Date() ).getTime(); //版本号

seajs.config({
	alias: {
        'jquery'                : 'jquery-2.1.3.min',
        'swipe'                 : 'jquery.touchSwipe.min',
		'popup'                 : 'popup',
		'Alert'                 : 'Alert'
	},
	map: [
	    [ /^(.*\.(?:css|js))(?:.*)$/i, '$1'+_version ]
	],
	debug: false,
	charset: 'utf-8'
});

//开启关闭调试输出

if(seajs.data.debug){
    this.console = {
        log : function(){}
    };
};