Merge pull request #27 from gdamjan/proxy-path-support

Allow The Lounge to be proxied behind a /path/ url
This commit is contained in:
Alistair McKinlay 2016-02-18 08:18:37 +00:00
commit a95d5e22ee
2 changed files with 7 additions and 6 deletions

View file

@ -16,9 +16,9 @@
<link rel="stylesheet" href="css/style.css">
<link id="theme" rel="stylesheet" href="<%= theme %>">
<link rel="shortcut icon" href="/img/favicon.png">
<link rel="icon" sizes="192x192" href="/img/touch-icon-192x192.png">
<link rel="apple-touch-icon" sizes="120x120" href="/img/apple-touch-icon-120x120.png">
<link rel="shortcut icon" href="img/favicon.png">
<link rel="icon" sizes="192x192" href="img/touch-icon-192x192.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/apple-touch-icon-120x120.png">
</head>
<body class="<%= public ? "public" : "" %>">

View file

@ -1,5 +1,6 @@
$(function() {
var socket = io();
var path = window.location.pathname + "socket.io/";
var socket = io({path:path});
var commands = [
"/close",
"/connect",
@ -38,7 +39,7 @@ $(function() {
var pop;
try {
pop = new Audio();
pop.src = "/audio/pop.ogg";
pop.src = "audio/pop.ogg";
} catch (e) {
pop = {
play: $.noop
@ -656,7 +657,7 @@ $(function() {
if (settings.badge && Notification.permission === "granted") {
var notify = new Notification(msg.from + " says:", {
body: msg.text.trim(),
icon: "/img/logo-64.png",
icon: "img/logo-64.png",
tag: target
});
notify.onclick = function() {