mirror of
https://github.com/wger-project/wger.git
synced 2026-02-18 00:17:51 +01:00
chore: add license header to language.js and format submitLanguageForm function
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user