Skip to content

Commit

Permalink
Fix for an issue with the tabView close button. The ontabclose-event …
Browse files Browse the repository at this point in the history
…didn't stop the event-propagation, so the click-event was automatically triggered after an ontabclose.

git-svn-id: https://qooxdoo.svn.sourceforge.net/svnroot/qooxdoo/tags/release_0_6_4@9276 61aaf1ca-a10e-0410-b9fb-ac63ec25887f
  • Loading branch information
vpauli committed Aug 5, 2007
1 parent 7535573 commit e53eb40
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -114,6 +114,7 @@ qx.Proto._onkeypress = function(e)

qx.Proto._ontabclose = function(e){
this.createDispatchDataEvent("closetab", this);
e.stopPropagation();
}


Expand Down

0 comments on commit e53eb40

Please sign in to comment.