Issue 183: Param
Status:  Invalid
Owner: ----
Closed:  Mar 2009
Reported by elledi...@gmail.com, Mar 1, 2009
Just wanted to ask if nyroModal has the opportunity to add some params to
the href witch is loaded?

Let me show an example:
<a href="/settings/playlist/" class="nyroModal">Playlist</a>

When peoples click at this link, they will see /settings/playlist/ because
nyroModals sends an parameter to the URL. This parameter is:  &nyro=yes

on /settings/playlist/ i have a script like this:
if($_GET["nyro"] != "yes") { header("location: http://www.google.dk/"); }

does nyroModal has this function? - if not, i will recommend this. It is
very useful =)
Mar 1, 2009
Project Member #1 nyro...@gmail.com
You could do it by using the ajax setting as follow:
$.nyroModalSettings({
  ajax: {
    data: 'nyro=yes'
  }
});
Status: Invalid