Issue 351: when the link in a iframe
Status:  Fixed
Owner: ----
Closed:  Oct 2009
Reported by ljzfore...@yahoo.com.cn, Oct 8, 2009
when i use it in a iframe, find some problem,
html code like this:
<body>
<iframe src="Head.aspx" scrolling="no" frameborder="0"></iframe>
</body>

when i use nyromodal in head.aspx, it will open a modal window in head.aspx 
or the only iframe, not the whole screen, how can i fix it ?


Oct 9, 2009
Project Member #1 nyro...@gmail.com
To make it work as you except:
Include jQuery and nyroModal in global page
Include only jQuery in head.aspx
Add this script in head.aspx:
$('.nyroModal').click(function(e) {
  e.preventDefault();
  parent.$.nyroModalManual(parent.$(this));
});
Status: Fixed