forked from cory/tildefriends
		
	Use wss:// when we're connected over https://.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3198 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
		@@ -423,7 +423,8 @@ $(document).ready(function() {
 | 
			
		||||
	window.addEventListener("message", onMessage, false);
 | 
			
		||||
	enableDragDrop();
 | 
			
		||||
 | 
			
		||||
	gSocket = new WebSocket("ws://"
 | 
			
		||||
	gSocket = new WebSocket(
 | 
			
		||||
		(window.location.protocol == "https:" ? "wss://" : "ws://")
 | 
			
		||||
		+ window.location.hostname
 | 
			
		||||
		+ (window.location.port.length ? ":" + window.location.port : "")
 | 
			
		||||
		+ "/terminal/socket");
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user