-
Notifications
You must be signed in to change notification settings - Fork 217
Open
Description
The line 73 in jquery.maximage.js has an issue.
if (typeof settings == 'object' || settings === undefined) config = $.extend( $.fn.maximage.defaults, settings || {} );It's supposed to be:
if (typeof settings == 'object' || settings === undefined) config = $.extend({}, $.fn.maximage.defaults, settings || {} );because according to the jQuery docs http://api.jquery.com/jquery.extend/ the first parameter gets to be modified.
Metadata
Metadata
Assignees
Labels
No labels