From 4995e1fa08635476a6a1ed08f6410e89c984e1f7 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Tue, 28 May 2013 22:08:17 +0000 Subject: [PATCH] When clearing, remove links too --- phpgwapi/js/egw_action/egw_action.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/phpgwapi/js/egw_action/egw_action.js b/phpgwapi/js/egw_action/egw_action.js index c549a3feaa..cf64e453bc 100644 --- a/phpgwapi/js/egw_action/egw_action.js +++ b/phpgwapi/js/egw_action/egw_action.js @@ -878,6 +878,9 @@ egwActionObject.prototype.clear = function() { // Delete all other references this.selectedChildren = []; this.focusedChild = null; + + // Remove links + this.actionLinks = []; } /**