We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7428c9f commit 7dacd04Copy full SHA for 7dacd04
src/assets/src/js/jquery.multipleInput.js
@@ -81,12 +81,12 @@
81
82
83
$wrapper.on('click.multipleInput', '.js-input-remove', function (e) {
84
- e.preventDefault();
+ e.stopPropagation();
85
removeInput($(this));
86
});
87
88
$wrapper.on('click.multipleInput', '.js-input-plus', function (e) {
89
90
addInput($(this));
91
92
@@ -299,4 +299,4 @@
299
String.prototype.replaceAll = function (search, replace) {
300
return this.split(search).join(replace);
301
};
302
-})(window.jQuery);
+})(window.jQuery);
0 commit comments