eae62cac7ec99f9be547962336487a02e1204527
tdreszer
  Tue Aug 31 12:26:37 2010 -0700
MSIE thinks its button 1 but other browsers think its button 0. These children should learn to play nice.
diff --git src/hg/js/jquery.tablednd.js src/hg/js/jquery.tablednd.js
index 8755aac..73e54fa 100644
--- src/hg/js/jquery.tablednd.js
+++ src/hg/js/jquery.tablednd.js
@@ -132,7 +132,7 @@
             cells.each(function() {
                 // The cell is bound to "this"
                 jQuery(this).mousedown(function(ev) {
-                    if(ev.button != 0)
+                    if(ev.button > 1)
                         return true;
                     if(jQuery.tableDnD == undefined)
                         return false;