From f9cf4b15449dcf54ac46b2d75a3ffcf5a32dac02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6cker?= Date: Sun, 12 Mar 2017 22:16:34 +0100 Subject: [PATCH] quick fix to make interactive control reference compatible with Chrome 57 --- Scripts/DCS-BIOS/doc/js/chrome-extension-background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/DCS-BIOS/doc/js/chrome-extension-background.js b/Scripts/DCS-BIOS/doc/js/chrome-extension-background.js index 3dd081620..c6a82fd4e 100644 --- a/Scripts/DCS-BIOS/doc/js/chrome-extension-background.js +++ b/Scripts/DCS-BIOS/doc/js/chrome-extension-background.js @@ -1,3 +1,3 @@ chrome.app.runtime.onLaunched.addListener(function() { - window.open("control-reference.html"); + chrome.app.window.create("control-reference.html"); });