[open-ils-commits] r16844 - in trunk/Open-ILS/web/js/ui/default: acq/financial booking (senator)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Jul 1 13:05:56 EDT 2010
Author: senator
Date: 2010-07-01 13:05:53 -0400 (Thu, 01 Jul 2010)
New Revision: 16844
Modified:
trunk/Open-ILS/web/js/ui/default/acq/financial/claim_eligible.js
trunk/Open-ILS/web/js/ui/default/booking/common.js
Log:
Fix missing dojo.require() in a couple of interfaces.
This bug doesn't manifest itself in releases, as the openils_dojo.js layer
seems to take care of overlooked calls to dojo.require() anyway.
Modified: trunk/Open-ILS/web/js/ui/default/acq/financial/claim_eligible.js
===================================================================
--- trunk/Open-ILS/web/js/ui/default/acq/financial/claim_eligible.js 2010-07-01 14:14:42 UTC (rev 16843)
+++ trunk/Open-ILS/web/js/ui/default/acq/financial/claim_eligible.js 2010-07-01 17:05:53 UTC (rev 16844)
@@ -1,3 +1,4 @@
+dojo.require("dijit.form.Button");
dojo.require("dijit.form.TextBox");
dojo.require("openils.acq.Lineitem");
dojo.require("openils.widget.OrgUnitFilteringSelect");
Modified: trunk/Open-ILS/web/js/ui/default/booking/common.js
===================================================================
--- trunk/Open-ILS/web/js/ui/default/booking/common.js 2010-07-01 14:14:42 UTC (rev 16843)
+++ trunk/Open-ILS/web/js/ui/default/booking/common.js 2010-07-01 17:05:53 UTC (rev 16844)
@@ -1,3 +1,5 @@
+dojo.require("dijit.form.Button");
+
/* Quick and dirty way to localize some strings; not recommended for reuse.
* I'm sure dojo provides a better mechanism for this, but at the moment
* this is faster to implement anew than figuring out the Right way to do
More information about the open-ils-commits
mailing list