ソースを参照

Allow hosting on specific path

Brendan Abolivier 7 年 前
コミット
fcf231e002
署名者: Brendan Abolivier <contact@brendanabolivier.com> GPGキーID: 8EF1500759F70623
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      front/form.js

+ 1
- 1
front/form.js ファイルの表示

@@ -85,7 +85,7 @@ function getServer() {
85 85
 			// This should be our script
86 86
 			if(url.match(/form\.js$/)) {
87 87
 				// Port has been found
88
-				return url.match(/^(https?:\/\/[^\/]+)/)[1];
88
+				return url.match(/^(https?:\/\/.+)\/form\.js/)[1];
89 89
 			}
90 90
 		}
91 91
 	}