From 70fb7949d4a28276c4a92e1ffde740acf9ee43dd Mon Sep 17 00:00:00 2001 From: franglais125 Date: Sat, 21 Oct 2017 15:49:28 -0400 Subject: [PATCH] windowPreview.js: use 'var' instead of 'const' for class. --- windowPreview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windowPreview.js b/windowPreview.js index 3a72a0866..aa8afe898 100644 --- a/windowPreview.js +++ b/windowPreview.js @@ -27,7 +27,7 @@ const HOVER_ENTER_TIMEOUT = 100; const HOVER_LEAVE_TIMEOUT = 100; const HOVER_MENU_LEAVE_TIMEOUT = 500; -const WindowPreviewMenu = new Lang.Class({ +var WindowPreviewMenu = new Lang.Class({ Name: 'WindowPreviewMenu', Extends: PopupMenu.PopupMenu,