jquery noty.js отключить нажмите чтобы скрыть
Я использую плагин noty.js ( http://ned.im/noty/) для отображения информации о состоянии для пользователя. Если пользователь нажмет на сообщение noty.js, когда оно отобразится, оно будет скрыто.
Как отключить функцию "Нажми, чтобы скрыть"? Я просто хочу, чтобы сообщение отображалось до тех пор, пока я не спрятал его автоматически или не запустил команду моей программы.
Спасибо.
1 ответ
Из документов, вот значения по умолчанию:
$.noty.defaults = {
layout: 'top',
theme: 'defaultTheme',
type: 'alert',
text: '', // can be html or string
dismissQueue: true, // If you want to use queue feature set this true
template: '<div class="noty_message"><span class="noty_text"></span><div class="noty_close"></div></div>',
animation: {
open: {height: 'toggle'},
close: {height: 'toggle'},
easing: 'swing',
speed: 500 // opening & closing animation speed
},
timeout: false, // delay for closing event. Set false for sticky notifications
force: false, // adds notification to the beginning of queue when set to true
modal: false,
maxVisible: 5, // you can set max visible notification for dismissQueue true option,
killer: false, // for close all notifications before show
closeWith: ['click'], // ['click', 'button', 'hover']
callback: {
onShow: function() {},
afterShow: function() {},
onClose: function() {},
afterClose: function() {}
},
buttons: false // an array of buttons
};
Обратите внимание на это свойство:
closeWith: ['click'], // ['click', 'button', 'hover']
если вы звоните:
noty({
...
closeWith: []
});
Тогда он не закроется, когда вы нажмете на него.
noty({text:'Data Saved', layout: 'topRight', type: 'success',killer : true,timeout: 1000});