I'm trying to use the NyroModal jQuery plugin with the following code:
$('img').click(function(e) {
e.preventDefault();
$.nmManual('pages/'+$(this).attr('id')+'.html', {
sizes: {
w: 1450,
h: 800,
initW: 2,
initH: 1
},
resizable: false,
closeOnEscape: false
});
});
For some reason, the resizable and closeOnEscape work, but the sizes don't.
This is weird because there's resizable
option.
I tried using the sizes and it works: http://jsfiddle.net/LekisS/hBxJn/2/