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

META-INF.resources.bootstrap.js.components.modal.js Maven / Gradle / Ivy

The newest version!
/* Customização para o component de modal */

jBootstrapModal = {};

jQuery.fn.extend(jBootstrapModal,{
	apply: function(modalObject) {
		jQuery.fn.extend(modalObject,{
			open: function() {
				this.modal('show');
				//window.setTimeout(this.modal.bind(this, 'show'), 400);
		  	},
		  	close: function() {
		  		this.modal('hide');
				//window.setTimeout(this.modal.bind(this, 'hide'), 400);
		  	}
		});
	}
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy