My favorites | Sign in
Project Home Downloads Issues
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 481: propblem using nyroManual
2 people starred this issue and may be notified of changes. Back to list
Status:  Fixed
Owner:  ----
Closed:  May 2010


 
Reported by kneid...@gmail.com, May 30, 2010
What steps will reproduce the problem?
1. i have the following code:

<script type="text/javascript"
src="/includes/nyroModal-1.6.2/js/jquery.nyroModal-1.6.2.pack.js"></script>
<script type="text/javascript">
	
$(function() {
  $('a.nyroModalMovie').click(function(e) {
	e.preventDefault();
								   	
    $.nyroModalManual({
		minWidth: 800, // Minimum width
 		minHeight: 800 // Minimum height
	});
	return false;

   });
});
</script>

2. link code: 

	<P><a href="clip.asp?clip=3" class="nyroModalMovie" target="_blank">עצרת
לכבודה של ירושלים</a></P>




What is the expected output? What do you see instead?
the nyro box starts loading, but then the screen goes blank (white)

See URL: http://bit.ly/bgIdX7 


What version of the product are you using? On what operating system?

Using Firefox 3.6.3


what haven't i done right?

PS: i tried using the Manual version, because when i tried the default, the
modal wasnt wide enough for some reason. so i needed to set it manually.


Thanks!


May 31, 2010
Project Member #1 nyro...@gmail.com
In your nyroModalManual call, you didn't set the url setting.

Simply do like:
$.nyroModalManual({
 	url: $(this).attr('href'),
	minWidth: 800, // Minimum width
 	minHeight: 800 // Minimum height
});

Status: Fixed

Powered by Google Project Hosting