From 4bcc1653ac385c27d1baf9dd53bfb72b3207114d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 7 Dec 2017 16:29:13 -0500 Subject: [PATCH] remove old runtime messages for overlay --- src/background/runtime.background.ts | 6 ------ webpack.common.js | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/background/runtime.background.ts b/src/background/runtime.background.ts index 93b425e078..66366f158d 100644 --- a/src/background/runtime.background.ts +++ b/src/background/runtime.background.ts @@ -52,12 +52,6 @@ export default class RuntimeBackground { setTimeout(async () => await this.main.refreshBadgeAndMenu(), 2000); } break; - case 'bgOpenOverlayPopup': - await this.currentTabSendMessage('openOverlayPopup', msg.data); - break; - case 'bgCloseOverlayPopup': - await this.currentTabSendMessage('closeOverlayPopup'); - break; case 'bgOpenNotificationBar': await BrowserApi.tabSendMessage(sender.tab, 'openNotificationBar', msg.data); break; diff --git a/webpack.common.js b/webpack.common.js index 4e620aed53..132b565c8e 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -52,7 +52,7 @@ module.exports = { use: [{ loader: 'file-loader', options: { - name: '[name].[hash].[ext]', + name: '[name].[ext]', outputPath: 'popup/images/', publicPath: '/' }