Skip to content

Commit

Permalink
fix event handler
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.dojotoolkit.org/src/dojox/trunk@30785 560b804f-0ae3-0310-86f3-f6aa0a117693
  • Loading branch information
cjolif committed Mar 7, 2013
1 parent 97615db commit c4db9e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions treemap/TreeMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ define(["dojo/_base/array", "dojo/_base/lang", "dojo/_base/declare", "dojo/_base
postCreate: function(){
this.inherited(arguments);
this.own(on(this.domNode, "mouseover", lang.hitch(this, this._onMouseOver)));
this.own(on(this.domNode, "mouseout", lang.hitch(this._onMouseOut)));
this.own(on(this.domNode, touch.release, lang.hitch(this._onMouseUp)));
this.own(on(this.domNode, "mouseout", lang.hitch(this, this._onMouseOut)));
this.own(on(this.domNode, touch.release, lang.hitch(this, this._onMouseUp)));
this.domNode.setAttribute("role", "presentation");
this.domNode.setAttribute("aria-label", "treemap");
},
Expand Down

0 comments on commit c4db9e4

Please sign in to comment.