Hi,
The popup windows fail to open on IE and Opera due to a small javascript bug in line 428 of popup.js
It seems these browsers are sensitive to the extra comma at the end of the success: line...
Before Fix:
$form.ajaxForm({
dataType: 'json',
beforeSubmit: Drupal.popups.beforeSubmit,
success: function(response, status) { Drupal.popups.formSuccess(response, options, a) },
});
After Fix (simply remove the extra comma at the end of the success line):
$form.ajaxForm({
dataType: 'json',
beforeSubmit: Drupal.popups.beforeSubmit,
success: function(response, status) { Drupal.popups.formSuccess(response, options, a) }
});
Great module - very slick.
Thanks,
Dan
Comments
Comment #1
starbow commentednice catch.
Comment #2
starbow commentedFixed in 1.1-beta
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.