LP#1086458: add missing cleanup call
authorGalen Charlton <gmc@esilibrary.com>
Thu, 24 Jan 2013 18:07:05 +0000 (13:07 -0500)
committerBen Shum <bshum@biblio.org>
Mon, 4 Mar 2013 19:49:33 +0000 (14:49 -0500)
Thanks to Jason Etheridge for the catch.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Ben Shum <bshum@biblio.org>
Open-ILS/xul/staff_client/server/circ/checkout.js

index a1231a5..da375fe 100644 (file)
@@ -272,6 +272,7 @@ circ.checkout.prototype = {
 
     'cleanup' : function() {
         var obj = this;
+        obj.list.cleanup();
         obj.controller.cleanup();
         obj.event_listeners.removeAll();
     },