From 89cd97ac05af0a2ae5177af6f134a5236139fec0 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 10 Feb 2021 08:13:41 -0800 Subject: [PATCH] js: Convert static/js/portico/integrations_dev_panel.js to ES6 module. Signed-off-by: Anders Kaseorg --- static/js/portico/integrations_dev_panel.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/static/js/portico/integrations_dev_panel.js b/static/js/portico/integrations_dev_panel.js index 410ec02161..f2ddb504c5 100644 --- a/static/js/portico/integrations_dev_panel.js +++ b/static/js/portico/integrations_dev_panel.js @@ -1,5 +1,3 @@ -"use strict"; - // Main JavaScript file for the integrations development panel at // /devtools/integrations. @@ -375,3 +373,4 @@ $(() => { $("#topic_name").on("change", update_url); }); +export {};