materialize-css
Version:
Builds Materialize distribution packages
18 lines (17 loc) • 441 B
text/jade
- var no_nav = false
- var page = "Dialogs"
doctype html
html(lang="en")
head
include _head.jade
body
include _navbar.jade
main
include page-contents/dialogs_content.html
include _footer.html
include _scripts.html
script(type='text/javascript').
var displayCustomHTMLToast = function () {
var $toastContent = $('<span>I am toast content</span>');
Materialize.toast($toastContent, 5000);
}