Skip to content

Commit 672940b

Browse files
author
Joost de Vries
committed
Merge pull request #6 from joostdevries/bugfix-websocket-and-version-0-0-2
Bugfix websocket and version 0.0.2
2 parents b73f639 + e68f089 commit 672940b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
return '<script src="' + scheme + '//' + host + ':' + port + '/socket.io/socket.io.js" type="text/javascript"></script>' +
2020
'<script type="text/javascript">' +
2121
' window.EMBER_INSPECTOR_CONFIG = window.EMBER_INSPECTOR_CONFIG || {};' +
22-
' window.EMBER_INSPECTOR_CONFIG.remoteDebugSocket = io(\'' + scheme + '//' + host + ':'+port+'\');' +
22+
' window.EMBER_INSPECTOR_CONFIG.remoteDebugSocket = io(\'' + (scheme ? scheme+'//' : '') + host + ':'+port+'\');' +
2323
'</script>';
2424
},
2525

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-cli-remote-inspector",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"directories": {
55
"doc": "doc",
66
"test": "tests"
@@ -18,7 +18,7 @@
1818
"license": "MIT",
1919
"dependencies": {
2020
"socket.io":"1.1.0",
21-
"ember-inspector": "^1.6.1"
21+
"ember-inspector": "^1.6.3"
2222
},
2323
"devDependencies": {
2424
"body-parser": "^1.2.0",

0 commit comments

Comments
 (0)