diff options
author | friendica <info@friendica.com> | 2014-06-13 17:33:03 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-06-13 17:33:03 -0700 |
commit | 64a370056c5cb4e65274145d6dd02c35530be0f3 (patch) | |
tree | 96c3dde55f2be2107767132e1a3bf19674439836 | |
parent | b5ea259666356c0fc06f281ebb1e5d13d7ab104a (diff) | |
download | volse-hubzilla-64a370056c5cb4e65274145d6dd02c35530be0f3.tar.gz volse-hubzilla-64a370056c5cb4e65274145d6dd02c35530be0f3.tar.bz2 volse-hubzilla-64a370056c5cb4e65274145d6dd02c35530be0f3.zip |
load main.js last
-rwxr-xr-x | boot.php | 4 | ||||
-rwxr-xr-x | include/plugin.php | 16 |
2 files changed, 19 insertions, 1 deletions
@@ -986,6 +986,10 @@ class App { '$js_strings' => js_strings(), '$zid' => get_my_address(), )) . $this->page['htmlhead']; + + // always put main.js at the end + $this->page['htmlhead'] .= head_get_main_js(); + } /** diff --git a/include/plugin.php b/include/plugin.php index ace00d43a..5c425ac58 100755 --- a/include/plugin.php +++ b/include/plugin.php @@ -573,11 +573,25 @@ function head_get_js() { $str = ''; $sources = get_app()->js_sources; if(count($sources)) - foreach($sources as $source) + foreach($sources as $source) { + if($source === 'main.js') + continue; $str .= format_js_if_exists($source); + } + return $str; +} + +function head_get_main_js() { + $str = ''; + $sources = array('main.js'); + if(count($sources)) + foreach($sources as $source) + $str .= format_js_if_exists($source,true); return $str; } + + function format_js_if_exists($source) { if(strpos($source,'/') !== false) |