소스 검색

Add redirect to websocket enabled site

Openshift only supports websockets on port 8000 as opposed to 80
Thomas Dy 10 년 전
부모
커밋
eac768a789
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      public/javascripts/main.js

+ 4 - 0
public/javascripts/main.js

@@ -1,3 +1,7 @@
+if(window.location.hostname == 'gamenchat.pleasantprogrammer.com' && window.location.port != 8000) {
+  window.location = 'http://gamenchat.pleasantprogrammer.com:8000';
+}
+
 angular.module('taboo', ['chatServices', 'tabooServices'])
 
 function partial(template) {