We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61be297 commit ed41c71Copy full SHA for ed41c71
index.js
@@ -19,7 +19,7 @@ module.exports = {
19
return '<script src="' + scheme + '//' + host + ':' + port + '/socket.io/socket.io.js" type="text/javascript"></script>' +
20
'<script type="text/javascript">' +
21
' window.EMBER_INSPECTOR_CONFIG = window.EMBER_INSPECTOR_CONFIG || {};' +
22
- ' window.EMBER_INSPECTOR_CONFIG.remoteDebugSocket = io(\'' + scheme + '//' + host + ':'+port+'\');' +
+ ' window.EMBER_INSPECTOR_CONFIG.remoteDebugSocket = io(\'' + (scheme ? scheme+'//' : '') + host + ':'+port+'\');' +
23
'</script>';
24
},
25
0 commit comments