mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-12 19:10:21 +03:00
41 lines
1.6 KiB
JavaScript
41 lines
1.6 KiB
JavaScript
'use strict'
|
|
|
|
const CONFIGURATOR = require('./data_storage');
|
|
const FC = require('./fc');
|
|
const { globalSettings } = require('./globalSettings');
|
|
const i18n = require('./localization');
|
|
|
|
var update = {
|
|
|
|
activatedTab: function() {
|
|
var activeTab = $('#tabs > ul li.active');
|
|
activeTab.removeClass('active');
|
|
$('a', activeTab).trigger('click');
|
|
},
|
|
|
|
firmwareVersion: function() {
|
|
if (CONFIGURATOR.connectionValid) {
|
|
$('#logo .firmware_version').text(FC.CONFIG.flightControllerVersion + " [" + FC.CONFIG.target + "]");
|
|
globalSettings.docsTreeLocation = 'https://github.com/iNavFlight/inav/blob/' + FC.CONFIG.flightControllerVersion + '/docs/';
|
|
globalSettings.configuratorTreeLocation = 'https://github.com/iNavFlight/inav-configurator/tree/' + FC.CONFIG.flightControllerVersion + '/';
|
|
|
|
// If this is a master branch firmware, this will find a 404 as there is no tag tree. So default to master for docs.
|
|
$.ajax({
|
|
url: globalSettings.docsTreeLocation + 'Settings.md',
|
|
method: "HEAD",
|
|
statusCode: {
|
|
404: function () {
|
|
globalSettings.docsTreeLocation = 'https://github.com/iNavFlight/inav/blob/master/docs/';
|
|
}
|
|
}
|
|
});
|
|
} else {
|
|
$('#logo .firmware_version').text(i18n.getMessage('fcNotConnected'));
|
|
|
|
globalSettings.docsTreeLocation = 'https://github.com/iNavFlight/inav/blob/master/docs/';
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = update;
|
|
|