mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	Update noVNC v1.2.0, add support for clipboard, explicit button toolbar and resize screensize
		
			
				
	
	
		
			16 lines
		
	
	
		
			326 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			326 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /*
 | |
|  * noVNC: HTML5 VNC client
 | |
|  * Copyright (C) 2020 The noVNC Authors
 | |
|  * Licensed under MPL 2.0 (see LICENSE.txt)
 | |
|  *
 | |
|  * See README.md for usage and integration instructions.
 | |
|  */
 | |
| 
 | |
| export function toUnsigned32bit(toConvert) {
 | |
|     return toConvert >>> 0;
 | |
| }
 | |
| 
 | |
| export function toSigned32bit(toConvert) {
 | |
|     return toConvert | 0;
 | |
| }
 |