1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 14:25:14 +03:00

Fix update window

The update window now is open inside a nw.js window. With this it is
opened in an external browser window.
This commit is contained in:
Miguel Angel Mulero Martinez 2018-02-09 12:05:59 +01:00
parent 71405e3735
commit 1092502583

View file

@ -429,7 +429,7 @@ function notifyOutdatedVersion(releaseData) {
$('.dialogConfiguratorUpdate-websitebtn').click(function() { $('.dialogConfiguratorUpdate-websitebtn').click(function() {
dialog.close(); dialog.close();
window.open(versions[0].html_url); window.open(versions[0].html_url, '_blank');
}); });
dialog.showModal(); dialog.showModal();