Author: chirag
Date: Tue Sep 28 02:01:57 2010
New Revision: 1001989
URL: http://svn.apache.org/viewvc?rev=1001989&view=rev
Log:
Avoid semicolon insertions.
Modified:
shindig/trunk/features/src/main/javascript/features/rpc/rpc.js
shindig/trunk/features/src/main/javascript/features/shindig.random/random.js
Modified: shindig/trunk/features/src/main/javascript/features/rpc/rpc.js
URL:
http://svn.apache.org/viewvc/shindig/trunk/features/src/main/javascript/features/rpc/rpc.js?rev=1001989&r1=1001988&r2=1001989&view=diff
==============================================================================
--- shindig/trunk/features/src/main/javascript/features/rpc/rpc.js (original)
+++ shindig/trunk/features/src/main/javascript/features/rpc/rpc.js Tue Sep 28
02:01:57 2010
@@ -426,7 +426,7 @@ if (!gadgets.rpc) { // make lib resilien
if (setup[frameId] !== true && setup[frameId]++ < SETUP_FRAME_MAX_TRIES)
{
// Try again in a bit, assuming that frame will soon exist.
- window.setTimeout(function() { setupFrame(frameId, token, forcesecure)
},
+ window.setTimeout(function() { setupFrame(frameId, token,
forcesecure); },
SETUP_FRAME_TIMEOUT);
} else {
// Fail: fall back for this gadget.
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=1001989&r1=1001988&r2=1001989&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
Tue Sep 28 02:01:57 2010
@@ -46,7 +46,7 @@ shindig.random = (function() {
return hash;
}
- var orig_onmousemove = window.onmousemove || function() { return false };
+ var orig_onmousemove = window.onmousemove || function() { return false; };
window.onmousemove = function(e) {
if (window.event) {