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

(-)a/koha-tmpl/intranet-tmpl/lib/koha/cateditor/widget.js (-1 / +1 lines)
Lines 111-117 define( [ 'resources' ], function( Resources ) { Link Here
111
111
112
                return Resources[resourceId].done( function( xml ) {
112
                return Resources[resourceId].done( function( xml ) {
113
                    $(widget.node).find('.widget-loading').remove();
113
                    $(widget.node).find('.widget-loading').remove();
114
                    var $matSelect = $('<select class="material-select"></select>').appendTo(widget.node);
114
                    var $matSelect = $('<select class="material-select" title="Type of material. Default controlled by Leader/06."></select>').appendTo(widget.node);
115
                    var $contents = $('<span class="material-contents"/>').appendTo(widget.node);
115
                    var $contents = $('<span class="material-contents"/>').appendTo(widget.node);
116
                    var materialInfo = {};
116
                    var materialInfo = {};
117
117
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-widgets-marc21.inc (-2 / +1 lines)
Lines 8-14 Link Here
8
            <option value="n">n - New</option>
8
            <option value="n">n - New</option>
9
            <option value="p">p - Increase in encoding level from prepublication</option>
9
            <option value="p">p - Increase in encoding level from prepublication</option>
10
        </select>
10
        </select>
11
        <select name="f6" title="Type of record">
11
        <select name="f6" title="Type of record. Controls default type of 008 field.">
12
            <option value="a">a - Language material</option>
12
            <option value="a">a - Language material</option>
13
            <option value="c">c - Notated music</option>
13
            <option value="c">c - Notated music</option>
14
            <option value="d">d - Manuscript notated music</option>
14
            <option value="d">d - Manuscript notated music</option>
15
- 

Return to bug 30871