Skip to content
Snippets Groups Projects
Commit 613e468b authored by Kegan Dougal's avatar Kegan Dougal
Browse files

Guess the home server URL on the login screen by inspecting the URL of the web client.

parent 61933f8e
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,16 @@ angular.module('LoginController', ['matrixService'])
function($scope, $location, matrixService) {
'use strict';
// Assume that this is hosted on the home server, in which case the URL
// contains the home server.
var hs_url = $location.protocol() + "://" + $location.host();
if ($location.port()) {
hs_url += ":" + $location.port();
}
$scope.account = {
homeserver: "http://localhost:8080",
homeserver: hs_url,
desired_user_name: "",
user_id: "",
password: "",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment