Issue 90: Manual Call for Images
Status:  Fixed
Owner: ----
Closed:  Oct 2008
Reported by Epo...@gmail.com, Oct 3, 2008
I'm try manually call image modal.

this is what i currently have


	$('#albumArt').click(function(e) {
	e.preventDefault();
		$.nyroModalManual({
		type: 'image',
		content: '<img class="nyroModal" src="URL" title="Some Text"/>'
		});
	return false;
	});


this brings up the image but the title doesn't show.

what is the correct manual call syntax for images? 


Oct 22, 2008
Project Member #1 nyro...@gmail.com
Hi Epohcj,

Sorry for the long delay...

In the new 1.3.0 release, this will work:
$('#albumArt').click(function(e) {
	e.preventDefault();
	$.nyroModalManual({
		url: 'yourImage.jpg',
		defaultImgAlt: 'Your Title'
	});
	return false;
});

Status: Fixed
Labels: -Type-Defect Type-Other
Nov 22, 2008
#2 Epo...@gmail.com
the title doesn't show and the dimensions default to minWidth and minHeight which
should have been calculated automatically.