[open-ils-commits] r12265 - trunk/Open-ILS/xul/staff_client/server/cat (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Sun Feb 22 16:23:58 EST 2009
Author: dbs
Date: 2009-02-22 16:23:54 -0500 (Sun, 22 Feb 2009)
New Revision: 12265
Modified:
trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js
Log:
Fix fixed fields editor. Closes #41
Modified: trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js 2009-02-22 16:43:46 UTC (rev 12264)
+++ trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js 2009-02-22 21:23:54 UTC (rev 12265)
@@ -9,6 +9,7 @@
var tooltip_hash = {};
var current_focus;
+var _record;
var _record_type;
var bib_data;
@@ -1336,7 +1337,7 @@
function loadRecord(rec) {
try {
- var _record = rec;
+ _record = rec;
var grid_rows = document.getElementById('recGrid').lastChild;
while (grid_rows.firstChild) grid_rows.removeChild(grid_rows.firstChild);
More information about the open-ils-commits
mailing list