View | Details | Raw Unified | Return to bug 30618
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/cataloging.js (-1 / +10 lines)
Lines 706-711 function CheckMandatorySubfields(p) { Link Here
706
                    .find(".input_marceditor");
706
                    .find(".input_marceditor");
707
            }
707
            }
708
            if (!editor.val()) {
708
            if (!editor.val()) {
709
                if (
710
                    editor.hasClass("select2") ||
711
                    editor.closest(".select2-container").length
712
                ) {
713
                    editor
714
                        .siblings(".select2")
715
                        .children(".selection")
716
                        .children(".select2-selection")
717
                        .css("background-color", "#FFFFCC");
718
                }
709
                editor.addClass("missing");
719
                editor.addClass("missing");
710
                total++;
720
                total++;
711
            }
721
            }
712
- 

Return to bug 30618