Преглед изворни кода

Merge pull request #15 from babolivier/development

Allow hosting on specific path
Brendan Abolivier пре 7 година
родитељ
комит
f4dfe54942
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
 	}