diff options
author | friendica <info@friendica.com> | 2012-12-13 04:47:06 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-13 04:47:06 -0800 |
commit | c360565d0a52dc5e9cc679703191e20373792dde (patch) | |
tree | 33c80b21a3f93c8cbb11a6dac162b8f186f09835 /view/php/theme_init.php | |
parent | 4e192b108d9ba3837ae881799b4376550a476ebf (diff) | |
download | volse-hubzilla-c360565d0a52dc5e9cc679703191e20373792dde.tar.gz volse-hubzilla-c360565d0a52dc5e9cc679703191e20373792dde.tar.bz2 volse-hubzilla-c360565d0a52dc5e9cc679703191e20373792dde.zip |
get rid of undefined $ error by mangling theme specific JS include order
Diffstat (limited to 'view/php/theme_init.php')
-rw-r--r-- | view/php/theme_init.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/view/php/theme_init.php b/view/php/theme_init.php index 4703022ec..68d6e4cd1 100644 --- a/view/php/theme_init.php +++ b/view/php/theme_init.php @@ -9,8 +9,6 @@ head_add_css('library/tiptip/tipTip.css'); head_add_css('library/jgrowl/jquery.jgrowl.css'); head_add_css('library/jslider/bin/jquery.slider.min.css'); - - head_add_js('js/jquery.js'); head_add_js('js/jquery.textinputs.js'); head_add_js('js/fk.autocomplete.js'); @@ -25,3 +23,4 @@ head_add_js('js/acl.js'); head_add_js('js/webtoolkit.base64.js'); head_add_js('js/main.js'); head_add_js('library/jslider/bin/jquery.slider.min.js'); +head_add_js('docready.js'); |