Open itivanov opened 11 years ago
options = jQuery.extend(options || {}, {show: true, unload: true, params: {}});
should be
options = jQuery.extend({show: true, unload: true, params: {}}, options || {});
options = jQuery.extend(options || {}, {show: true, unload: true, params: {}});
should be
options = jQuery.extend({show: true, unload: true, params: {}}, options || {});