Merge pull request #2236 from McGiverGim/fix_window_title_flicker
Remove window title hack for Chrome10.8-maintenance
commit
36fe5f48b8
|
@ -2,10 +2,6 @@
|
||||||
"translation_version": {
|
"translation_version": {
|
||||||
"message": "0"
|
"message": "0"
|
||||||
},
|
},
|
||||||
"windowTitle": {
|
|
||||||
"message": "Betaflight Configurator",
|
|
||||||
"description": "Title of the application window, usually not translated"
|
|
||||||
},
|
|
||||||
"yes": {
|
"yes": {
|
||||||
"message": "Yes",
|
"message": "Yes",
|
||||||
"description": "General Yes message to be used across the application"
|
"description": "General Yes message to be used across the application"
|
||||||
|
|
|
@ -20,7 +20,8 @@
|
||||||
"icon": "images/bf_icon_128.png",
|
"icon": "images/bf_icon_128.png",
|
||||||
"id": "main-window",
|
"id": "main-window",
|
||||||
"min_width": 1024,
|
"min_width": 1024,
|
||||||
"min_height": 550
|
"min_height": 550,
|
||||||
|
"title": "Betaflight Configurator"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -143,9 +143,8 @@
|
||||||
<script type="text/javascript" src="./components/MotorOutputReordering/MotorOutputReorderingCanvas.js"></script>
|
<script type="text/javascript" src="./components/MotorOutputReordering/MotorOutputReorderingCanvas.js"></script>
|
||||||
<script type="text/javascript" src="./components/MotorOutputReordering/MotorOutputReorderingConfig.js"></script>
|
<script type="text/javascript" src="./components/MotorOutputReordering/MotorOutputReorderingConfig.js"></script>
|
||||||
<script type="text/javascript" src="./node_modules/select2/dist/js/select2.min.js"></script>
|
<script type="text/javascript" src="./node_modules/select2/dist/js/select2.min.js"></script>
|
||||||
|
|
||||||
|
|
||||||
<title i18n="windowTitle"></title>
|
<title></title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="main-wrapper">
|
<div id="main-wrapper">
|
||||||
|
|
Loading…
Reference in New Issue