| Issue 322: | When I click outside nyromodal window, the nyromodal disappears | |
| 2 people starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem? 1. click out side the nyromodal window 2. nyromodal window disappears 3. What is the expected output? What do you see instead? window should not disappear What version of the product are you using? On what operating system? Please provide any additional information below.
Aug 29, 2009
#1
traderas...@gmail.com
Aug 30, 2009
nyroModal is designed this way and it fits with many usages.
BTW, you could disable this feature by using a callback as follow:
$(function() {
$.nyroModalSettings({
endFillContent: function(elts, settings) {
elts.bg.unbind('click');
}
});
});
Checking that, I saw that this event isn't namespaced. So, in the next release,
you'll have to do:
elts.bg.unbind('click.nyroModal');
to be more precise
Status:
Fixed
Labels: Type-Other |