Sha256: 1407b47521c01dbcb5cc5e7a410b4fd49fee215b500cd6f45ea4e2d65a5331c0

Contents?: true

Size: 306 Bytes

Versions: 4

Compression:

Stored size: 306 Bytes

Contents

/* This is useful for any ajax's that need to pop-up something after an existing popup is on screen*/
function show_modal_after_close(content, options){ 
	if ( $('MB_overlay') ) { 
		setTimeout(function(){show_modal_after_close(content,options)}, 500);
	}
	else { 
		Modalbox.show(content,options); 
	} 
};

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
brisk-bills-0.8.2 public/javascripts/briskbills-quick-helpers.js
brisk-bills-0.8.1 public/javascripts/briskbills-quick-helpers.js
brisk-bills-0.7.0 public/javascripts/briskbills-quick-helpers.js
brisk-bills-0.6.0 public/javascripts/briskbills-quick-helpers.js