Keine Beschreibung

colorfield.js 370B

12345678910111213
  1. /** global: django */
  2. window.addEventListener("load", function (event) {
  3. if (typeof django !== "undefined" && typeof django.jQuery !== "undefined") {
  4. (function ($) {
  5. // add colopicker to inlines added dynamically
  6. $(document).on("formset:added", function onFormsetAdded(event, row) {
  7. jscolor.install();
  8. });
  9. })(django.jQuery);
  10. }
  11. });