clean a few pointers to jquery

This commit is contained in:
Lu Wang 2013-11-09 16:22:45 +08:00
parent 80e6df6c2b
commit 4a8d0bcd31
3 changed files with 1 additions and 2 deletions

View File

@ -76,7 +76,6 @@ pdf2htmlEX is made possible thanks to the following projects:
* [poppler](http://poppler.freedesktop.org/)
* [Fontforge](http://fontforge.org/)
* [jQuery](http://jquery.com/)
pdf2htmlEX is inspired by the following projects:

View File

@ -17,7 +17,6 @@ OUTPUT="$BASEDIR/$OUTPUT_FN"
java -jar "$CLOSURE_COMPILER_JAR" \
--compilation_level ADVANCED_OPTIMIZATIONS \
--warning_level VERBOSE \
--process_jquery_primitives \
--output_wrapper "(function(){%output%})();" \
--js "$INPUT" \
--js_output_file "$OUTPUT" && \

View File

@ -135,6 +135,7 @@ void HTMLRenderer::drawString(GfxState * state, GooString * s)
// horiz_scaling is merged into ctm now,
// so the coordinate system is ugly
// TODO: why multiply hs here
dx = (dx * cur_font_size + nChars * cur_letter_space + nSpaces * cur_word_space) * hs;
dy *= cur_font_size;