All Downloads are FREE. Search and download functionalities are using the official Maven repository.

static.scripts.processing.js Maven / Gradle / Ivy

There is a newer version: 0.41.3
Show newest version
(function($) {
	$.fn.progressDialog = function() {
	};

	$.fn.progressDialog.showDialog = function(text) {
		text = text || "Loading,Please wait..."
		if (!processMask) {
			processMask = $("
").css({ "height" : $(document).height() + "px", "width" : "100%", "filter" : "alpha(opacity = 40)", "-moz-opacity" : "0.4", "opacity" : "0.4", "background-color" : "#333", "position" : "absolute", "left" : "0px", "top" : "0px" }); } if (!loadDiv) { loadDiv = $("
" + text + "loading
"); } $("body").prepend(loadDiv).append(processMask); } $.fn.progressDialog.hideDialog = function(text) { $("#processMask").remove(); $("#loadDiv").remove(); } var processMask; var loadDiv; var width = 290; var Height = 60; })(jQuery);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy