From: Galen Charlton Date: Thu, 24 Jan 2013 18:07:05 +0000 (-0500) Subject: LP#1086458: add missing cleanup call X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8d7007d4fe281ff88d05ff3143081c020d4dd8ee;p=working%2FEvergreen.git LP#1086458: add missing cleanup call Thanks to Jason Etheridge for the catch. Signed-off-by: Galen Charlton Signed-off-by: Ben Shum --- diff --git a/Open-ILS/xul/staff_client/server/circ/checkout.js b/Open-ILS/xul/staff_client/server/circ/checkout.js index 39df8eda5f..3540e3909e 100644 --- a/Open-ILS/xul/staff_client/server/circ/checkout.js +++ b/Open-ILS/xul/staff_client/server/circ/checkout.js @@ -272,6 +272,7 @@ circ.checkout.prototype = { 'cleanup' : function() { var obj = this; + obj.list.cleanup(); obj.controller.cleanup(); obj.event_listeners.removeAll(); },