[open-ils-commits] r9471 -
trunk/Open-ILS/xul/staff_client/server/cat
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon Apr 28 00:23:53 EDT 2008
Author: dbs
Date: 2008-04-27 23:43:59 -0400 (Sun, 27 Apr 2008)
New Revision: 9471
Modified:
trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js
Log:
Silence a few more trailing comma warnings
Modified: trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js 2008-04-28 03:38:54 UTC (rev 9470)
+++ trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js 2008-04-28 03:43:59 UTC (rev 9471)
@@ -1312,7 +1312,7 @@
function loadRecord(rec) {
try {
- _record = rec;
+ var _record = rec;
var grid_rows = document.getElementById('recGrid').lastChild;
while (grid_rows.firstChild) grid_rows.removeChild(grid_rows.firstChild);
@@ -1408,7 +1408,7 @@
'var e = document.createEvent("MutationEvents");' +
'e.initMutationEvent("change",1,1,null,0,0,0,0);' +
'current_focus.inputField.dispatchEvent(e);',
- tooltiptext : sf.description,
+ tooltiptext : sf.description
}
)
);
@@ -1582,7 +1582,7 @@
command : function (event) {
applyAuthority(event.target.previousSibling, target, sf);
return true;
- },
+ }
}
)
);
@@ -1792,7 +1792,7 @@
181 : 'z',
182 : 'z',
185 : 'z'
- },
+ }
},
630 : {
'a' : { 130 : 'a' },
More information about the open-ils-commits
mailing list