Skip to content

Commit

Permalink
[Fixes #2529136] - Pushing the actual fix this time
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Sep 20, 2010
1 parent 0179a9e commit f2393a0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/dragdrop/dragdrop-debug.js
Expand Up @@ -828,7 +828,7 @@ YAHOO.util.DragDropMgr = function() {
// YAHOO.log("which: " + e.which + ", button: "+ e.button);

// check for IE < 9 mouseup outside of page boundary
if ((YAHOO.util.Event.isIE < 9) && !e.button) {
if ((YAHOO.env.ua.ie < 9) && !e.button) {
YAHOO.log("button failure", "info", "DragDropMgr");
this.stopEvent(e);
return this.handleMouseUp(e);
Expand Down
2 changes: 1 addition & 1 deletion build/dragdrop/dragdrop-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/dragdrop/dragdrop.js
Expand Up @@ -812,7 +812,7 @@ YAHOO.util.DragDropMgr = function() {
// var button = e.which || e.button;

// check for IE < 9 mouseup outside of page boundary
if ((YAHOO.util.Event.isIE < 9) && !e.button) {
if ((YAHOO.env.ua.ie < 9) && !e.button) {
this.stopEvent(e);
return this.handleMouseUp(e);
} else {
Expand Down
2 changes: 1 addition & 1 deletion sandbox/dragdrop/js/DragDropMgr.js
Expand Up @@ -828,7 +828,7 @@ YAHOO.util.DragDropMgr = function() {
// YAHOO.log("which: " + e.which + ", button: "+ e.button);

// check for IE < 9 mouseup outside of page boundary
if ((YAHOO.util.Event.isIE < 9) && !e.button) {
if ((YAHOO.env.ua.ie < 9) && !e.button) {
YAHOO.log("button failure", "info", "DragDropMgr");
this.stopEvent(e);
return this.handleMouseUp(e);
Expand Down
2 changes: 1 addition & 1 deletion src/dragdrop/js/DragDropMgr.js
Expand Up @@ -828,7 +828,7 @@ YAHOO.util.DragDropMgr = function() {
// YAHOO.log("which: " + e.which + ", button: "+ e.button);

// check for IE < 9 mouseup outside of page boundary
if ((YAHOO.util.Event.isIE < 9) && !e.button) {
if ((YAHOO.env.ua.ie < 9) && !e.button) {
YAHOO.log("button failure", "info", "DragDropMgr");
this.stopEvent(e);
return this.handleMouseUp(e);
Expand Down

0 comments on commit f2393a0

Please sign in to comment.