diff options
Diffstat (limited to 'library/index.js')
-rw-r--r-- | library/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/library/index.js b/library/index.js index b5f4f6637..44ee401d8 100644 --- a/library/index.js +++ b/library/index.js @@ -26,7 +26,7 @@ var shouldPop = false window.addEventListener('click', function(){ if (!shouldPop) return shouldPop = false - window.open('http://127.0.0.1:9001/popup/popup.html', '', 'width=360 height=500') + window.open('http://localhost:9001/popup/popup.html', '', 'width=360 height=500') console.log('opening window...') }) @@ -41,3 +41,5 @@ function hijackProvider(provider){ _super(payload, cb) } } + + |