mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 16:55:24 +03:00
Merge pull request #502 from Mistale/make-src-paths-relative
Make absolute path in osd tab (implicitly absolute) relative
This commit is contained in:
commit
cc900dda31
1 changed files with 1 additions and 1 deletions
|
@ -979,7 +979,7 @@ TABS.osd.initialize = function (callback) {
|
|||
if (!$(this).data('font-file')) { return; }
|
||||
$fontPicker.removeClass('active');
|
||||
$(this).addClass('active');
|
||||
$.get('/resources/osd/' + $(this).data('font-file') + '.mcm', function(data) {
|
||||
$.get('./resources/osd/' + $(this).data('font-file') + '.mcm', function(data) {
|
||||
FONT.parseMCMFontFile(data);
|
||||
FONT.preview($preview);
|
||||
updateOsdView();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue