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

(-)a/koha-tmpl/intranet-tmpl/lib/koha/cateditor/marc-editor.js (-1 / +8 lines)
Lines 136-141 define( [ 'marc-record', 'koha-backend', 'preferences', 'text-marc', 'widget' ], Link Here
136
    }
136
    }
137
137
138
    var _editorKeys = {
138
    var _editorKeys = {
139
        'Alt-C': function( cm ) {
140
            cm.replaceRange( '©', cm.getCursor() );
141
        },
142
143
        'Alt-P': function( cm ) {
144
            cm.replaceRange( '℗', cm.getCursor() );
145
        },
146
139
        Enter: function( cm ) {
147
        Enter: function( cm ) {
140
            var cursor = cm.getCursor();
148
            var cursor = cm.getCursor();
141
            cm.replaceRange( '\n', { line: cursor.line }, null, 'marcAware' );
149
            cm.replaceRange( '\n', { line: cursor.line }, null, 'marcAware' );
142
- 

Return to bug 18417