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=b3112a156b57a0ded171a30d257d1fc479e33e31;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 69c311932d..e8a7169afa 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(); },