1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-13 11:29:53 +03:00

Attach doc button only to the first tab title

This commit is contained in:
Pawel Spychalski (DzikuVx) 2021-05-02 11:51:42 +02:00
parent 11a7ae743e
commit 8fe453a672

View file

@ -166,7 +166,7 @@ GUI_control.prototype.content_ready = function (callback) {
});
// Insert a documentation button next to the tab title
const tabTitle = $('div#content .tab_title');
const tabTitle = $('div#content .tab_title').first();
const documentationDiv = $('<div>').addClass('cf_doc_version_bt');
$('<a>').attr('href', 'https://github.com/iNavFlight/inav/wiki')
.attr('target', '_blank').attr('id', 'button-documentation')