$()

in website-creator/js/connectflows.js [35:45]


$( document ).ready(function() {
	if (checkCookie()){
		setAWSConfig(dlgSourceAccessKey, dlgSourceSecretKey, dlgSourceRegion);
		loadConnectAPIs();
	    getInstanceNames();
	    setupAll();
	}else{
		setupAll();
		$( "#configDialog" ).dialog( "open" );
	}
});