From: miker Date: Thu, 4 Nov 2010 21:18:03 +0000 (+0000) Subject: cut down on reloading of IDL classes X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2b002a187b2fe2a1dfbde29a684ba6ff7517834e;p=Evergreen.git cut down on reloading of IDL classes git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6@18605 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/js/dojo/fieldmapper/IDL.js b/Open-ILS/web/js/dojo/fieldmapper/IDL.js index 2c3f1baab1..b6c43fb889 100644 --- a/Open-ILS/web/js/dojo/fieldmapper/IDL.js +++ b/Open-ILS/web/js/dojo/fieldmapper/IDL.js @@ -20,6 +20,7 @@ if(!dojo._hasResource["fieldmapper.IDL"]) { 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;