Gallery - AE Gallery Bugfix
Posted: Fri Aug 11, 2017 8:56 pm
				
				While trying to use AE-Gallery Template of Gallery module i can't get it running. As i see in browser debug log it tries to load jquery from google directly. But cross site policy prevents loading of script's from other domains. And as i see CMSMS already comes with appropriate jQuery Version 1.11.1.
So, fix this
to this
and template works well.
			So, fix this
Code: Select all
<__script__ type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></__script>Code: Select all
<__script__ type="text/javascript" src="/lib/jquery/js/jquery-1.11.1.min.js"></__script>