solved javascript footer function from listener problem

SteveX
SteveX
@ultrajam
11 years ago
2,584 posts
It looks like adding anything at all to the javascript footer function from a listener prevents any other modules’ from being added. The js is replacing the array for the footer function rather than being added to it.

I’ve tested this by adding some js which doesn’t do anything. There is a console error, but the error appears when Together is not installed as well.
Quote: Error: https://update.ultrajam.net/modules/jrAction/contrib/underscore/underscore-min.js?v=1.3.1 is being assigned a //# sourceMappingURL, but already has one


In the init function I have:
    // Includes the Together scripts
    jrCore_register_event_listener('jrCore', 'index_template', 'ujTogether_insert_js_listener');
    jrCore_register_event_listener('jrCore', 'skin_template', 'ujTogether_insert_js_listener');
    jrCore_register_event_listener('jrCore', 'module_view', 'ujTogether_insert_js_listener');
    jrCore_register_event_listener('jrProfile', 'profile_view', 'ujTogether_insert_js_listener');


And the reduced listener:
    
function ujTogether_insert_js_listener($_data, $_user, $_conf, $_args, $event)
{ if ( !strpos($_SERVER['REQUEST_URI'], '__ajax') && !strpos($_SERVER['REQUEST_URI'], '_v=') && isset($_conf['ujTogether_enabled']) && $_conf['ujTogether_enabled'] == 'on' ) { // add something to javascript_footer_function $_together_conf = 'var testinglistener = "somethinganything";'; jrCore_create_page_element('javascript_footer_function', array($_together_conf)); } return $_data; }


If I remove the listener, other modules’ js appears in the footer function, add it back again, only the Together js appears.


--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)

updated by @ultrajam: 04/06/14 04:44:21PM
brian
@brian
11 years ago
10,149 posts
I can check this out.

One tip: use jrCore_is_ajax_request() to check if a request is an AJAX request.

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
brian
@brian
11 years ago
10,149 posts
I found the root cause of this and will have the fix in for Core 5.1.26.

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
SteveX
SteveX
@ultrajam
11 years ago
2,584 posts
Ok thanks Brian!


--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)
brian
@brian
11 years ago
10,149 posts
Just an update that this should be fixed in jrCore 5.1.26 - let me know if you see any issues.

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
SteveX
SteveX
@ultrajam
11 years ago
2,584 posts
Looks good on first testing with 2 modules using the footer function. Thanks for solving that!

I still see this in ff console though, not sure what it means:
Quote: Error: http://xdev4.ultrajam.co.uk/modules/jrAction/contrib/underscore/underscore-min.js?v=1.3.1 is being assigned a //# sourceMappingURL, but already has one
I haven't noticed it causing any problems with anything though.


--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)

updated by @ultrajam: 03/04/14 07:38:05AM
brian
@brian
11 years ago
10,149 posts
Yeah that's a 3rd party JS script - I'll see if that is something that can ether be fixed or suppressed.

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
brian
@brian
11 years ago
10,149 posts
Turns out this JS error is a bug in Firefox:

https://bugzilla.mozilla.org/show_bug.cgi?id=925614


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net

Tags