Skip to content

Commit

Permalink
Fix deprecated Redux DevTools extension url
Browse files Browse the repository at this point in the history
  • Loading branch information
zalmoxisus committed Oct 26, 2016
1 parent c5e3ed6 commit 471f28c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/browser/extension/background/inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ chrome.tabs.onUpdated.addListener(function (tabId, changeInfo, tab) {

// Include Redux DevTools extension
const httpRequest = new XMLHttpRequest();
httpRequest.open('GET', 'chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/js/inject.bundle.js');
httpRequest.open('GET', 'chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/js/redux-devtools-extension.js');
httpRequest.send();
httpRequest.onreadystatechange = function () {
if (httpRequest.readyState === XMLHttpRequest.DONE && httpRequest.status === 200) {
Expand Down
2 changes: 1 addition & 1 deletion src/browser/views/includes/devtools.jade
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if env !== 'prod'
script(src='chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/js/inject.bundle.js')
script(src='chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/js/redux-devtools-extension.js')

0 comments on commit 471f28c

Please sign in to comment.