I have the following code on my document.ready
$.notify("Your class starts in 15min", "info", {
clickToHide: false,
autoHide: false,
globalPosition: 'top center'
});
but nothing happen, I only get the text and the info type, but autohide and globalposition it's not working.
What I'm doing wrong.
thanks for your helps
I have the following code on my document.ready
$.notify("Your class starts in 15min", "info", {
clickToHide: false,
autoHide: false,
globalPosition: 'top center'
});
but nothing happen, I only get the text and the info type, but autohide and globalposition it's not working.
What I'm doing wrong.
thanks for your helps
Share Improve this question edited Sep 29, 2014 at 12:21 Jean asked Sep 29, 2014 at 11:57 JeanJean 5,41111 gold badges54 silver badges90 bronze badges1 Answer
Reset to default 10I just created a jsFiddle with your given information and everything works fine when you use
$.notify("Your class starts in 15min", {
className:'info',
clickToHide: false,
autoHide: false,
globalPosition: 'top right'
});
The problem was that you used the style information ('info') as the second parameter within the constructor, which actually expects an object of options $.notify( string|object, [ options ])
.
Please note that I used jQuery 2.1.0 and notifyJS v0.3.1.