Skip to content

Commit 4ff9550

Browse files
committed
issue #11006 Unable to get property 'style' of undefined or null reference
1 parent a044467 commit 4ff9550

File tree

3 files changed

+186
-13
lines changed

3 files changed

+186
-13
lines changed

deps/jquery/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ POWERTIP_VERSION = 1.3.1
55
TOUCHPUNCH_VERSION = 0.2.3
66
SMARTMENUS_VERSION = 1.1.0
77

8-
MINIFIER ?= /usr/local/bin/yuicompressor-2.4.8
8+
UGLIFYCSS ?= /usr/local/bin/uglifycss
9+
UGLIFYJS ?= /usr/local/bin/uglifyjs
910
SCRIPTS = jquery-$(JQUERY_VERSION).min.js \
1011
jquery.ui-$(JQUERY_UI_VERSION).min.js \
1112
jquery.scrollTo-$(SCROLL_VERSION).min.js \
@@ -30,7 +31,9 @@ doxmenu-min.css: sm-core-css.css \
3031
sass/_sub-items-indentation.scss
3132
compass compile --css-dir . --force sass/sm-dox.scss
3233
cat sm-core-css.css sm-dox.css > doxmenu.css
33-
java -jar $(MINIFIER).jar doxmenu.css > doxmenu-min.css
34+
$(UGLIFYCSS) doxmenu.css > doxmenu-min.css
35+
$(UGLIFYJS) -O max_line_len=1024,comments=true jquery.js > jquery-min.js
36+
mv jquery-min.js jquery.js
3437
rm -f sm-dox.css doxmenu.css
3538

3639
clean:

templates/html/jquery.js

Lines changed: 180 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)