Updated Branches: refs/heads/5.4-js-rewrite af4cc29fd -> 0e7a82b29
Fix exception when clicking on a floating console message Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/0e7a82b2 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/0e7a82b2 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/0e7a82b2 Branch: refs/heads/5.4-js-rewrite Commit: 0e7a82b290bfb767872445924c3721d23a347c4d Parents: f57f611 Author: Howard M. Lewis Ship <[email protected]> Authored: Thu Jun 28 18:11:31 2012 -0700 Committer: Howard M. Lewis Ship <[email protected]> Committed: Thu Jun 28 18:11:31 2012 -0700 ---------------------------------------------------------------------- .../tapestry5/corelib/modulejs/console.coffee | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/0e7a82b2/tapestry-core/src/main/coffeescript/org/apache/tapestry5/corelib/modulejs/console.coffee ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/coffeescript/org/apache/tapestry5/corelib/modulejs/console.coffee b/tapestry-core/src/main/coffeescript/org/apache/tapestry5/corelib/modulejs/console.coffee index a845620..d8d8802 100644 --- a/tapestry-core/src/main/coffeescript/org/apache/tapestry5/corelib/modulejs/console.coffee +++ b/tapestry-core/src/main/coffeescript/org/apache/tapestry5/corelib/modulejs/console.coffee @@ -43,7 +43,7 @@ define -> afterFinish: -> div.remove() # was T5.dom.remove(div) div.observe "click", -> - effect.cancel() + fade.cancel() div.remove() # was T5.dom.remove(div) level = (className, consolefn) ->
