diff --git a/js/hopscotch-0.0.1.js b/js/hopscotch-0.0.1.js index 790a5059..72b86e5f 100644 --- a/js/hopscotch-0.0.1.js +++ b/js/hopscotch-0.0.1.js @@ -330,7 +330,6 @@ bubbleWidth = utils.getPixelValue(step.width) || opt.bubbleWidth; bubblePadding = utils.valOrDefault(step.padding, opt.bubblePadding); - console.log(targetEl); utils.removeClass(el, 'fade-in-down fade-in-up fade-in-left fade-in-right'); // SET POSITION diff --git a/minify-all.sh b/minify-all.sh deleted file mode 100755 index bdf0a800..00000000 --- a/minify-all.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -./minify.sh && ./minify-jquery.sh diff --git a/minify-jquery.sh b/minify-jquery.sh deleted file mode 100755 index 2c641837..00000000 --- a/minify-jquery.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -echo "" -echo "Minifying files into assets.js..." -echo "=================================" -echo "This script uses Google Closure Compiler (http://code.google.com/closure/compiler/) and assumes the location of the compiler is:" -echo "~/workspace/compiler-latest/compiler.jar" -echo "" -echo "INPUT FILES:" -echo "============" -echo "hopscotch_jquery.js" - -java -jar /Users/gkoo/workspace/yuicompressor-2.4.7/build/yuicompressor-2.4.7.jar --type js /Users/gkoo/Sites/hopscotch/js/hopscotch_jquery.js > /Users/gkoo/Sites/hopscotch/js/hopscotch_jquery-min.js - -echo "Done minifying..." diff --git a/minify.sh b/minify.sh index 6f6ad341..8678a1d2 100755 --- a/minify.sh +++ b/minify.sh @@ -7,9 +7,9 @@ echo "/Users/gkoo/workspace/yuicompressor-2.4.7/build/yuicompressor-2.4.7.jar" echo "" echo "INPUT FILES:" echo "============" -echo "hopscotch.js" +echo "hopscotch-0.0.1.js" -java -jar /Users/gkoo/workspace/yuicompressor-2.4.7/build/yuicompressor-2.4.7.jar --type js /Users/gkoo/Sites/hopscotch/js/hopscotch.js > /Users/gkoo/Sites/hopscotch/js/hopscotch-min.js +java -jar /Users/gkoo/workspace/yuicompressor-2.4.7/build/yuicompressor-2.4.7.jar --type js /Users/gkoo/Sites/hopscotch/js/hopscotch-0.0.1.js > /Users/gkoo/Sites/hopscotch/js/hopscotch-0.0.1.min.js echo "Done minifying..."