mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Replace GeneralFunctions upperCaseFirstLetter with the string utility module.
This commit is contained in:
parent
7a9aa3d91d
commit
adf7943297
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ window.App.Utils.Lang = (function () {
|
||||||
$('<li/>', {
|
$('<li/>', {
|
||||||
'class': 'language',
|
'class': 'language',
|
||||||
'data-language': availableLanguage,
|
'data-language': availableLanguage,
|
||||||
'text': GeneralFunctions.upperCaseFirstLetter(availableLanguage)
|
'text': App.Vars.String.upperCaseFirstLetter(availableLanguage)
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue