| 12345678910111213 |
- /** global: django */
- window.addEventListener('load', function (event) {
- if (typeof django !== 'undefined' && typeof django.jQuery !== 'undefined') {
- (function ($) {
- // add colopicker to inlines added dynamically
- $(document).on('formset:added', function onFormsetAdded(event, row) {
- jscolor.install();
- });
- })(django.jQuery);
- }
- });
|