]> git.proxmox.com Git - mirror_novnc.git/commitdiff
Add missing commas and semicolons
authorSamuel Mannehed <samuel@cendio.se>
Thu, 1 Sep 2016 13:56:28 +0000 (15:56 +0200)
committerSamuel Mannehed <samuel@cendio.se>
Thu, 1 Sep 2016 13:56:28 +0000 (15:56 +0200)
include/rfb.js

index 9935962c127d86db5f7f17f5122773df8a7d48c0..9a7f373dccd86c29f7f56c8e715cd918ec6e75b1 100644 (file)
@@ -1373,7 +1373,7 @@ var RFB;
                     lowerByte = lowerByte | 0x80;
                     return lowerByte;
                 }
-                return xt_scancode
+                return xt_scancode;
             }
 
             var buff = sock._sQ;
@@ -1390,7 +1390,7 @@ var RFB;
             buff[offset + 6] = (keysym >> 8);
             buff[offset + 7] = keysym;
 
-            var RFBkeycode = getRFBkeycode(keycode)
+            var RFBkeycode = getRFBkeycode(keycode);
 
             buff[offset + 8] = (RFBkeycode >> 24);
             buff[offset + 9] = (RFBkeycode >> 16);
@@ -2322,6 +2322,6 @@ var RFB;
                 this._qemuExtKeyEventSupported = true;
                 this._keyboard.setQEMUVNCKeyboardHandler();
             }
-        },
+        }
     };
 })();