]> git.proxmox.com Git - mirror_novnc.git/commitdiff
Fix indentation in list of encodings
authorSamuel Mannehed <samuel@cendio.se>
Thu, 1 Sep 2016 14:00:22 +0000 (16:00 +0200)
committerSamuel Mannehed <samuel@cendio.se>
Thu, 1 Sep 2016 14:00:22 +0000 (16:00 +0200)
include/rfb.js

index b29e1073d4dfe5a5dd07e247ed896ee31c11896b..f6d9d723e5f296f80b13ece598d989508775f2bc 100644 (file)
@@ -37,29 +37,29 @@ var RFB;
 
         // In preference order
         this._encodings = [
-            ['COPYRECT',            0x01 ],
-            ['TIGHT',               0x07 ],
-            ['TIGHT_PNG',           -260 ],
-            ['HEXTILE',             0x05 ],
-            ['RRE',                 0x02 ],
-            ['RAW',                 0x00 ],
+            ['COPYRECT',             0x01 ],
+            ['TIGHT',                0x07 ],
+            ['TIGHT_PNG',            -260 ],
+            ['HEXTILE',              0x05 ],
+            ['RRE',                  0x02 ],
+            ['RAW',                  0x00 ],
 
             // Psuedo-encoding settings
 
-            //['JPEG_quality_lo',    -32 ],
-            ['JPEG_quality_med',     -26 ],
-            //['JPEG_quality_hi',    -23 ],
-            //['compress_lo',       -255 ],
-            ['compress_hi',         -247 ],
+            //['JPEG_quality_lo',     -32 ],
+            ['JPEG_quality_med',      -26 ],
+            //['JPEG_quality_hi',     -23 ],
+            //['compress_lo',        -255 ],
+            ['compress_hi',          -247 ],
 
-            ['DesktopSize',         -223 ],
-            ['last_rect',           -224 ],
-            ['Cursor',              -239 ],
+            ['DesktopSize',          -223 ],
+            ['last_rect',            -224 ],
+            ['Cursor',               -239 ],
             ['QEMUExtendedKeyEvent', -258 ],
-            ['ExtendedDesktopSize', -308 ],
-            ['xvp',                 -309 ],
-            ['Fence',               -312 ],
-            ['ContinuousUpdates',   -313 ]
+            ['ExtendedDesktopSize',  -308 ],
+            ['xvp',                  -309 ],
+            ['Fence',                -312 ],
+            ['ContinuousUpdates',    -313 ]
         ];
 
         this._encHandlers = {};