equal
deleted
inserted
replaced
292 // get an XHR instance |
292 // get an XHR instance |
293 var ajax = ajaxMakeXHR(); |
293 var ajax = ajaxMakeXHR(); |
294 |
294 |
295 if ( !multiple ) |
295 if ( !multiple ) |
296 file = file + '.js'; |
296 file = file + '.js'; |
297 var uri = ( ENANO_JSRES_COMPRESSED ) ? scriptPath + '/includes/clientside/jsres.php?f=' + (multiple ? file_flat : file ) : scriptPath + '/includes/clientside/static/' + file; |
297 var uri = ( ENANO_JSRES_COMPRESSED ) ? scriptPath + '/includes/clientside/jsres.php?f=' + (multiple ? file_flat : file ) + '&' + enano_version : scriptPath + '/includes/clientside/static/' + file + '?' + enano_version; |
298 try |
298 try |
299 { |
299 { |
300 ajax.open('GET', uri, false); |
300 ajax.open('GET', uri, false); |
301 ajax.onreadystatechange = function() |
301 ajax.onreadystatechange = function() |
302 { |
302 { |