[open-ils-commits] r18605 - branches/rel_1_6/Open-ILS/web/js/dojo/fieldmapper (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Nov 4 17:18:08 EDT 2010
Author: miker
Date: 2010-11-04 17:18:03 -0400 (Thu, 04 Nov 2010)
New Revision: 18605
Modified:
branches/rel_1_6/Open-ILS/web/js/dojo/fieldmapper/IDL.js
Log:
cut down on reloading of IDL classes
Modified: branches/rel_1_6/Open-ILS/web/js/dojo/fieldmapper/IDL.js
===================================================================
--- branches/rel_1_6/Open-ILS/web/js/dojo/fieldmapper/IDL.js 2010-11-04 21:17:20 UTC (rev 18604)
+++ branches/rel_1_6/Open-ILS/web/js/dojo/fieldmapper/IDL.js 2010-11-04 21:18:03 UTC (rev 18605)
@@ -20,6 +20,7 @@
for (var i = 0; i < classlist.length; i++) {
var trim_class = classlist[i];
if (!trim_class) continue;
+ if (fieldmapper.IDL.fmclasses && fieldmapper.IDL.fmclasses[trim_class]) continue;
if (i > 0) idl_url += '&';
idl_url += 'class=' + trim_class;
More information about the open-ils-commits
mailing list