Skip to content

Commit

Permalink
Make sure minified output is ASCII.
Browse files Browse the repository at this point in the history
fixes #6
  • Loading branch information
borgar committed Apr 3, 2012
1 parent d918a7d commit dc99327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -25,7 +25,7 @@ protovis-msie.js: $(SOURCE_FILES) Makefile
%.min.js: %.js Makefile
@@if test ! -z ${UGLIFY}; then \
echo "Building" $@; \
${UGLIFY} < $< > $@; \
${UGLIFY} --ascii < $< > $@; \
else \
echo "You must have ${UGLIFY} installed in order to minify the library."; \
fi
Expand Down

0 comments on commit dc99327

Please sign in to comment.