Skip to content

Instantly share code, notes, and snippets.

@leonguyen
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save leonguyen/c0d6ca02466caa9d7362 to your computer and use it in GitHub Desktop.

Select an option

Save leonguyen/c0d6ca02466caa9d7362 to your computer and use it in GitHub Desktop.
Noty confirm
var n = noty({
layout: 'center',
type: 'alert',
modal: false,
closeWith: ['click'],
text: 'Do you really want to log out?',
buttons: [
{addClass: 'btn btn-primary', text: 'Ok', onClick: function($noty) {
location.href='/logout'
}
},
{addClass: 'btn btn-danger', text: 'Cancel', onClick: function($noty) {
$noty.close();
}
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment