Subversion Repositories SmartDukaan

Rev

Rev 16767 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 16767 Rev 17070
Line 23... Line 23...
23
			// Tell YQL what we want and that we want JSON			
23
			// Tell YQL what we want and that we want JSON			
24
			method: 'get',
24
			method: 'get',
25
			// timeout: 30000,
25
			// timeout: 30000,
26
			// Work with the response
26
			// Work with the response
27
			success: function( response ) {
27
			success: function( response ) {
28
				$('#loadingModal').modal('hide');
28
				//$('#loadingModal').modal('hide');
29
				if(response.message=='Success'){
29
				if(response.message=='Success'){
30
					document.location = response.url;
30
					document.location = response.url;
31
				}
31
				}
32
			}
32
			}
33
		},'json');
33
		},'json');
-
 
34
		setTimeout(function(){$('#loadingModal').modal('hide');},10000);
34
	});
35
	});
35
});
36
});