Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow changing socket.io-path via query string #240

Merged
merged 1 commit into from
Sep 11, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion client/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
var url = require('url');
var io = require("socket.io-client");
var stripAnsi = require('strip-ansi');
var scriptElements = document.getElementsByTagName("script");
io = io.connect(typeof __resourceQuery === "string" && __resourceQuery ?

var urlParts = url.parse(typeof __resourceQuery === "string" && __resourceQuery ?
__resourceQuery.substr(1) :
scriptElements[scriptElements.length-1].getAttribute("src").replace(/\/[^\/]+$/, "")
);

io = io.connect(
url.format({
protocol: urlParts.protocol,
auth: urlParts.auth,
host: urlParts.host
}), {
path: urlParts.path === '/' ? null : urlParts.path
}
);

var hot = false;
var initial = true;
var currentHash = "";
Expand Down