mirror of
https://github.com/grocy/grocy.git
synced 2026-04-05 20:36:15 +02:00
14 lines
206 B
JavaScript
14 lines
206 B
JavaScript
function usersettingsView(Grocy, scope = null)
|
|
{
|
|
var $scope = $;
|
|
if (scope != null)
|
|
{
|
|
$scope = $(scope).find;
|
|
}
|
|
|
|
$scope("#locale").val(Grocy.UserSettings.locale);
|
|
|
|
RefreshLocaleNumberInput();
|
|
|
|
}
|