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=e6a56b322420fbed19d2bab59718a19f7374f57b;p=contrib%2FConifer.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 a1231a5b39..da375fe7d7 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(); },