Issue 322: When I click outside nyromodal window, the nyromodal disappears
Status:  Fixed
Owner: ----
Closed:  Aug 2009
Reported by traderas...@gmail.com, Aug 29, 2009
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
I have modal:false. For modal:true it does not disappear, but is it anyway I can make
it draggable for modal:true
Aug 30, 2009
Project Member #2 nyro...@gmail.com
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