From decec2685dc0609ffcfaa6486f7821fcaf2d4fc5 Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Tue, 14 Oct 2014 11:54:47 -0700 Subject: [PATCH] fix(inject): fix path of hint bundle --- inject.js | 2 +- manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inject.js b/inject.js index 3e5a7c4..6018517 100644 --- a/inject.js +++ b/inject.js @@ -8,7 +8,7 @@ html.appendChild(eventProxyElement); // inject into the application context from the content script context var script = window.document.createElement('script'); -script.src = chrome.extension.getURL('hint.bundle.js'); +script.src = chrome.extension.getURL('dist/hint.js'); eventProxyElement.addEventListener('myCustomEvent', function () { var eventData = eventProxyElement.innerText; diff --git a/manifest.json b/manifest.json index b4c725b..8d492d8 100644 --- a/manifest.json +++ b/manifest.json @@ -21,7 +21,7 @@ ] }, "web_accessible_resources": [ - "hint.bundle.js" + "dist/hint.js" ], "minimum_chrome_version": "21.0.1180.57" } \ No newline at end of file