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

Merge pull request #196 from bilson/log-filename

Change log filename from cleanflight to betaflight
This commit is contained in:
Anton Stålheim 2016-08-08 18:52:12 +02:00 committed by GitHub
commit e7ba2c1ad4

View file

@ -230,7 +230,7 @@ TABS.logging.initialize = function (callback) {
function prepare_file() {
// create or load the file
chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'cleanflight_data_log', accepts: [{extensions: ['csv']}]}, function(entry) {
chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'betaflight_data_log', accepts: [{extensions: ['csv']}]}, function(entry) {
if (!entry) {
console.log('No file selected');
return;