| Issue 433: | Bug with jQuery 1.4.x | |
| 5 people starred this issue and may be notified of changes. | Back to list |
|
What steps will reproduce the problem?
1. in firebug, execute $.nyroModalManual({url:'demoSent.php',ajax:{}})
What is the expected output? What do you see instead?
Page does not loaded
What version of the product are you using? On what operating system?
jQuery 1.4.1, nyroModal 1.6.1, Firefox 3.6 on Windows 7
Please provide any additional information below.
Works fine with jQuery 1.3.2
The following code seems to be an error in
================================================
function processModal(settings) {
...
callingSettings = $.extend(true, settings);
...
================================================
Change is good following.
================================================
function processModal(settings) {
...
callingSettings = $.extend(false, settings);
...
================================================
Apr 17, 2010
Project Member
#1
nyro...@gmail.com
Status:
Accepted
Apr 17, 2010
Issue 446 has been merged into this issue.
Apr 17, 2010
Issue 455 has been merged into this issue.
Aug 2, 2010
Don't you mean
callingSettings = $.extend(true, {}, settings);
Otherwise it will extend the callingSettings with the settings. While in the old situation you assigned callingSettings with a copy of settings.
|
||||||