admin管理员组文章数量:1347158
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.
本文标签: javascriptnotifyjs options are not workingStack Overflow
版权声明:本文标题:javascript - notify.js options are not working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743832248a2546739.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论