JamieLivingstone / styled-notifications

A simple JavaScript notification library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Direct page

arikurniawans opened this issue · comments

How to make direct page after alert notify running, this my code
window.createNotification({
closeOnClick: true,
displayCloseButton: true,
positionClass: 'nfc-top-right',
showDuration: 3000,
theme: 'warning'
})({
title: 'Oops...',
message: 'Username Wajib Diisi !'
})
.then (function() {
window.location.href = "page.html";
});