Renamed media type to track type for tracks

This commit is contained in:
Codenift 2020-01-06 17:15:04 -05:00
parent 3338e9289a
commit 386918da2b
23 changed files with 111 additions and 111 deletions

View file

@ -205,9 +205,9 @@ $(document).ready(function () {
//$("#recent_uploads_table.div.fg-toolbar").prepend('<b>Custom tool bar! Text/images etc.</b>');
$("#select_type").on("change",function(){
var mtValue = $("#select_type").val();
var mtText = $('#select_type option[value="'+mtValue+'"]').text();
$("#upload_type").text(" " + mtText);
Cookies.set('mt_upload', mtValue);
var ttValue = $("#select_type").val();
var ttText = $('#select_type option[value="'+ttValue+'"]').text();
$("#upload_type").text(" " + ttText);
Cookies.set('tt_upload', ttValue);
});
});