Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 492 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 492 Bytes

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