chore: add license header to language.js and format submitLanguageForm function

This commit is contained in:
Francisco
2026-01-09 16:52:46 -05:00
parent 7bfbe5ed37
commit 1e36dcd551

View File

@@ -1,10 +1,25 @@
/*
This file is part of wger Workout Manager.
wger Workout Manager is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
wger Workout Manager is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Affero General Public License
*/
/**
* Submits the language form with the
* desired language code.
* @param {String} languageCode
*/
function submitLanguageForm(languageCode){
function submitLanguageForm(languageCode) {
document.getElementById('language-input').value = languageCode;
document.getElementById('language-form').submit();
}