From ae5293cab29214e5a0473cfe4683e5a8363641af Mon Sep 17 00:00:00 2001 From: Lebbeous Fogle-Weekley Date: Tue, 11 Dec 2012 16:58:33 -0500 Subject: [PATCH] Serials: printing routing slips fails with Javascript error The symptom (an error in the Javascript console about dijit.form.Button and an empty page for routing slips that you try to print at batch recieve) may or may not be affected by whether you're in a production environment with the pre-built dojo 1.3.3 package installed or a development environment without it. This simple fix makes the problem go away in any case. Signed-off-by: Lebbeous Fogle-Weekley Signed-off-by: Ben Shum --- Open-ILS/web/js/ui/default/serial/print_routing_list_users.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Open-ILS/web/js/ui/default/serial/print_routing_list_users.js b/Open-ILS/web/js/ui/default/serial/print_routing_list_users.js index b8b05e7a4b..94c06893c0 100644 --- a/Open-ILS/web/js/ui/default/serial/print_routing_list_users.js +++ b/Open-ILS/web/js/ui/default/serial/print_routing_list_users.js @@ -1,4 +1,5 @@ dojo.require("dojo.string"); +dojo.require("dijit.form.Button"); var list_renderer; -- 2.43.2