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