Skip to content

Commit

Permalink
Remove return false from mouseover/out.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonytomov committed Jul 8, 2011
1 parent c66cb6e commit 0e9450c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions js/grid.base.js
Expand Up @@ -2224,11 +2224,9 @@ $.fn.jqGrid = function( pin ) {
if($(ptr).attr("class") !== "subgrid") {
$(ptr).addClass("ui-state-hover");
}
return false;
}).bind('mouseout',function(e) {
ptr = $(e.target).closest("tr.jqgrow");
$(ptr).removeClass("ui-state-hover");
return false;
});
}
var ri,ci;
Expand Down

0 comments on commit 0e9450c

Please sign in to comment.