/material-dialog

Javascript implementatition of materialize modal's

Primary LanguageHTMLGNU General Public License v3.0GPL-3.0

material-dialog

Javascript implementation of materialize modal's

A simple library tinked to easy Materialize JavaScript Modals

This

<div id="modal1" class="modal">
	<div class="modal-content">
		<h4>Alert</h4>
		<p>Hello</p>
	</div>
	<div class="modal-footer">
		<a href="#!" class="btn modal-close">Close</a>
	</div>
</div>

Can be simplified to

MaterialDialog.alert("Hello");	

Try yourself

See in action Here