Skip to content

Commit 444e748

Browse files
committed
changed to also utilize the data attribute when looking up the container
1 parent b3f17b4 commit 444e748

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

dist/breinify-activities.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -850,11 +850,11 @@
850850
this.blurElements.push({
851851
$el: $el,
852852
settings: settings,
853-
data: data
853+
data: $.extend(true, {}, data)
854854
});
855855
} else {
856856
$el.click(function (event) {
857-
_self.handleClick(event, $el, settings, data);
857+
_self.handleClick(event, $el, settings, $.extend(true, {}, data));
858858
});
859859
}
860860
},

0 commit comments

Comments
 (0)