Fixed js self invoking anonymous function expression.

pull/87/head
Fabio Caccamo 2020-04-07 15:48:42 +02:00
parent 32e4afd90f
commit f7ec79eb75
3 changed files with 3 additions and 3 deletions

View File

@ -16,5 +16,5 @@ if (typeof(django) !== 'undefined' && typeof(django.jQuery) !== 'undefined') {
return false;
});
});
}(django.jQuery));
})(django.jQuery);
}

View File

@ -49,4 +49,4 @@
break;
}
}());
})();

View File

@ -147,5 +147,5 @@ if (typeof(django) !== 'undefined' && typeof(django.jQuery) !== 'undefined')
presentRelatedObjectModalOnClickOn('a.dynamic_raw_id-related-lookup', true);
});
}(django.jQuery));
})(django.jQuery);
}