From 1832c12834d42c273381f87fad04ff71344afce2 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 18 Oct 2019 13:47:17 -0400 Subject: [PATCH] LP1848778 Use consistent MARC breaker delimiter Use the '$' delimiter in the read-only MARC breaker view for consistencty with the flat text MARC editor to easy copy/paste from one to the other. Signed-off-by: Bill Erickson --- Open-ILS/web/js/ui/default/staff/cat/services/record.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Open-ILS/web/js/ui/default/staff/cat/services/record.js b/Open-ILS/web/js/ui/default/staff/cat/services/record.js index 9c881373e3..c099e4dd67 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/services/record.js +++ b/Open-ILS/web/js/ui/default/staff/cat/services/record.js @@ -95,6 +95,9 @@ angular.module('egCoreMod') ['$scope','egCore', function($scope , egCore) { + // Match the MARC flat-text editor + MARC21.Record.delimiter = '$'; + function loadRecordBreaker() { var xml; if ($scope.marcXml) { -- 2.11.0