Revert "Allow The Lounge to be proxied behind a /path/ url"

This commit is contained in:
Jérémie Astori 2016-02-13 02:20:07 -05:00
parent ec381b0b8a
commit 6122b02c5d
2 changed files with 6 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,5 @@
$(function() {
var socket = io({path:"./socket.io/"});
var socket = io();
var commands = [
"/close",
"/connect",
@ -38,7 +38,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 +656,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() {