From 4c462681bd53a21c8d068f0c58b3254e7d259928 Mon Sep 17 00:00:00 2001
From: senator <senator@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Thu, 1 Jul 2010 17:05:53 +0000
Subject: [PATCH] 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
---
 Open-ILS/web/js/ui/default/acq/financial/claim_eligible.js | 1 +
 Open-ILS/web/js/ui/default/booking/common.js               | 2 ++
 2 files changed, 3 insertions(+)

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
-- 
2.11.0