Repository: deltaspike Updated Branches: refs/heads/master d14eb560c -> 8af46d10d
DELTASPIKE-1063 StoreWindowTreeEnabledOnButtonClick prevents defined onclick Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/8af46d10 Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/8af46d10 Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/8af46d10 Branch: refs/heads/master Commit: 8af46d10d15cc0b98560fd227fcc8e249170c323 Parents: d14eb56 Author: tandraschko <[email protected]> Authored: Wed Jan 13 13:59:41 2016 +0100 Committer: tandraschko <[email protected]> Committed: Wed Jan 13 13:59:41 2016 +0100 ---------------------------------------------------------------------- .../resources/META-INF/resources/deltaspike/windowhandler.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltaspike/blob/8af46d10/deltaspike/modules/jsf/impl/src/main/resources/META-INF/resources/deltaspike/windowhandler.js ---------------------------------------------------------------------- diff --git a/deltaspike/modules/jsf/impl/src/main/resources/META-INF/resources/deltaspike/windowhandler.js b/deltaspike/modules/jsf/impl/src/main/resources/META-INF/resources/deltaspike/windowhandler.js index 7bc2d97..d101812 100644 --- a/deltaspike/modules/jsf/impl/src/main/resources/META-INF/resources/deltaspike/windowhandler.js +++ b/deltaspike/modules/jsf/impl/src/main/resources/META-INF/resources/deltaspike/windowhandler.js @@ -170,7 +170,9 @@ window.dswh = window.dswh || { //ie handling added evt = evt || window.event; - return dswh.strategy.CLIENTWINDOW.storeWindowTree() && oldonclick.bind(this)(evt); + dswh.strategy.CLIENTWINDOW.storeWindowTree(); + + return oldonclick.bind(this)(evt); }; })(); }
