首页 > 代码库 > bootstrap-datetimepicker在经过GC(Google Closure Compiler)压缩后无法使用的解决方案

bootstrap-datetimepicker在经过GC(Google Closure Compiler)压缩后无法使用的解决方案

将压缩级别由simple改成whitespace

问题就是这样之后压缩后的文件大了很多

<?xml version="1.0"?><project name="Javascript compress project" basedir="." default="compile">  <taskdef name="jscomp" classname="com.google.javascript.jscomp.ant.CompileTask" classpath="WebRoot/WEB-INF/lib/compiler.jar"/>  <target name="compile" depends="clear">    <jscomp compilationLevel="whitespace" warning="quiet" debug="false" output="WebRoot/min/js-all.min.js">      <sources dir="${basedir}/WebRoot/js">        <file name="jquery.cookie.js"/>        <file name="moment.min.js"/>        <file name="modernizr.min.js"/>        <file name="retina.min.js"/>        <file name="theme.js"/>        <file name="json2.js"/>        <file name="jquery.md5.js"/>        <file name="markdown.js"/>        <file name="bootstrap-datetimepicker.min.js"/>        <file name="bootstrap-datetimepicker.zh-CN.js"/>      </sources>    </jscomp>  </target>  <target name="clear">    <delete file="WebRoot/min/js-all.min.js"/>  </target></project>

 

bootstrap-datetimepicker在经过GC(Google Closure Compiler)压缩后无法使用的解决方案