You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by jo...@apache.org on 2011/03/03 01:38:13 UTC

svn commit: r1076471 - /shindig/trunk/features/src/main/javascript/features/shindig.random/random.js

Author: johnh
Date: Thu Mar  3 00:38:13 2011
New Revision: 1076471

URL: http://svn.apache.org/viewvc?rev=1076471&view=rev
Log:
Don't return false in the default orig_onmousemove handler, so that event propagation continues to occur. This fixes things such as text selection in IE9.


Modified:
    shindig/trunk/features/src/main/javascript/features/shindig.random/random.js

Modified: shindig/trunk/features/src/main/javascript/features/shindig.random/random.js
URL: http://svn.apache.org/viewvc/shindig/trunk/features/src/main/javascript/features/shindig.random/random.js?rev=1076471&r1=1076470&r2=1076471&view=diff
==============================================================================
--- shindig/trunk/features/src/main/javascript/features/shindig.random/random.js (original)
+++ shindig/trunk/features/src/main/javascript/features/shindig.random/random.js Thu Mar  3 00:38:13 2011
@@ -35,7 +35,7 @@ shindig.random = (function() {
   var start = 1;
   var m = ((screen.width * screen.width) + screen.height) * 1e6;
 
-  var orig_onmousemove = window.onmousemove || function() { return false; };
+  var orig_onmousemove = window.onmousemove || function() { };
 
   window.onmousemove = function(e) {
     if (window.event) {