I had same problem and solved it downloading all the external JS and CSS and modifying the script (see modified script).
function jqhfu_enqueue_scripts() {
$stylepath=JQHFUPLUGINDIRURL.'css/';
$scriptpath=JQHFUPLUGINDIRURL.'js/';
wp_enqueue_style ( 'jquery-ui-style', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/themes/base/jquery-ui.css' );
wp_enqueue_style ( 'jquery-image-gallery-style', $stylepath . 'jquery.image-gallery.min.css');
wp_enqueue_style ( 'jquery-fileupload-ui-style', $stylepath . 'jquery.fileupload-ui.css');
wp_enqueue_script ( 'enable-html5-script', 'https://html5shim.googlecode.com/svn/trunk/html5.js');
if(!wp_script_is('jquery')) {
wp_enqueue_script ( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js',array(),'',false);
}
wp_enqueue_script ( 'jquery-ui-script', '//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js',array('jquery'),'',true);
wp_enqueue_script ( 'tmpl-script', $scriptpath . 'tmpl.min.js',array('jquery'),'',true);
wp_enqueue_script ( 'load-image-script', $scriptpath . 'load-image.min.js',array('jquery'),'',true);
wp_enqueue_script ( 'canvas-to-blob-script', $scriptpath . 'canvas-to-blob.min.js',array('jquery'),'',true);
wp_enqueue_script ( 'jquery-image-gallery-script', $scriptpath . 'jquery.image-gallery.min.js',array('jquery'),'',true);
wp_enqueue_script ( 'jquery-iframe-transport-script', $scriptpath . 'jquery.iframe-transport.js',array('jquery'),'',true);
wp_enqueue_script ( 'jquery-fileupload-script', $scriptpath . 'jquery.fileupload.js',array('jquery'),'',true);
wp_enqueue_script ( 'jquery-fileupload-fp-script', $scriptpath . 'jquery.fileupload-fp.js',array('jquery'),'',true);
wp_enqueue_script ( 'jquery-fileupload-ui-script', $scriptpath . 'jquery.fileupload-ui.js',array('jquery'),'',true);
wp_enqueue_script ( 'jquery-fileupload-jui-script', $scriptpath . 'jquery.fileupload-jui.js',array('jquery'),'',true);
wp_enqueue_script ( 'transport-script', $scriptpath . 'cors/jquery.xdr-transport.js',array('jquery'),'',true);
}
As you can see I downloaded
jquery.image-gallery.min.css
from
https://github.com/blueimp/jQuery-Image-Gallery/blob/master/css/jquery.image-gallery.min.css
and I did put the file in
wp-content/plugin/jquery-html5-file-upload/css/
And downloaded
tmpl.min.js
from
https://github.com/blueimp/JavaScript-Templates/blob/master/js/tmpl.min.js
load-image.min.js
from
https://github.com/blueimp/JavaScript-Load-Image/blob/master/js/load-image.min.js
canvas-to-blob.min.js
from
https://github.com/blueimp/JavaScript-Canvas-to-Blob/blob/master/js/canvas-to-blob.min.js
jquery.image-gallery.min.js
from
https://github.com/blueimp/jQuery-Image-Gallery/blob/master/js/jquery.image-gallery.min.js
and I did put the files in
wp-content/plugin/jquery-html5-file-upload/js/
Then I removed the https://blueimp.github.xxx part and added $styletpath and $scriptpath as you can see in the code on top.
Obviously this will not allow me to have online automatic updates of the scripts and also I’ll need to rework the script on each update, but, I don’t like online scripts and the plugin was not working anyway because of problems/path on blueimp.github.com/blueimp.github.io repository…
SdP