From: senator Date: Thu, 1 Jul 2010 17:05:53 +0000 (+0000) Subject: Fix missing dojo.require() in a couple of interfaces. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4c462681bd53a21c8d068f0c58b3254e7d259928;p=evergreen%2Fpines.git 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. git-svn-id: svn://svn.open-ils.org/ILS/trunk@16844 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/js/ui/default/acq/financial/claim_eligible.js b/Open-ILS/web/js/ui/default/acq/financial/claim_eligible.js index 500ce20589..e75dfce4f2 100644 --- a/Open-ILS/web/js/ui/default/acq/financial/claim_eligible.js +++ b/Open-ILS/web/js/ui/default/acq/financial/claim_eligible.js @@ -1,3 +1,4 @@ +dojo.require("dijit.form.Button"); dojo.require("dijit.form.TextBox"); dojo.require("openils.acq.Lineitem"); dojo.require("openils.widget.OrgUnitFilteringSelect"); diff --git a/Open-ILS/web/js/ui/default/booking/common.js b/Open-ILS/web/js/ui/default/booking/common.js index bc5166d577..3bcbe44482 100644 --- a/Open-ILS/web/js/ui/default/booking/common.js +++ b/Open-ILS/web/js/ui/default/booking/common.js @@ -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