码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-10-01 17:41:51      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   使用   ar   java   strong   

将压缩级别由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)压缩后无法使用的解决方案

标签:style   blog   color   io   os   使用   ar   java   strong   

原文地址:http://www.cnblogs.com/turtlegood/p/4003348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!