Skip to content

Commit

Permalink
Merge pull request #6 from joostdevries/bugfix-websocket-and-version-…
Browse files Browse the repository at this point in the history
…0-0-2

Bugfix websocket and version 0.0.2
  • Loading branch information
Joost de Vries committed Nov 22, 2014
2 parents b73f639 + e68f089 commit 672940b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -19,7 +19,7 @@ module.exports = {
return '<script src="' + scheme + '//' + host + ':' + port + '/socket.io/socket.io.js" type="text/javascript"></script>' +
'<script type="text/javascript">' +
' window.EMBER_INSPECTOR_CONFIG = window.EMBER_INSPECTOR_CONFIG || {};' +
' window.EMBER_INSPECTOR_CONFIG.remoteDebugSocket = io(\'' + scheme + '//' + host + ':'+port+'\');' +
' window.EMBER_INSPECTOR_CONFIG.remoteDebugSocket = io(\'' + (scheme ? scheme+'//' : '') + host + ':'+port+'\');' +
'</script>';
},

Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "ember-cli-remote-inspector",
"version": "0.0.1",
"version": "0.0.2",
"directories": {
"doc": "doc",
"test": "tests"
Expand All @@ -18,7 +18,7 @@
"license": "MIT",
"dependencies": {
"socket.io":"1.1.0",
"ember-inspector": "^1.6.1"
"ember-inspector": "^1.6.3"
},
"devDependencies": {
"body-parser": "^1.2.0",
Expand Down

0 comments on commit 672940b

Please sign in to comment.