grocy/js/viewjs/usersettings.js
Katharina Bogad 2fbcefa8fd viewjs: scoped jquery
Most instances of $ have been replaced by $scope.
2021-06-23 15:00:53 +02:00

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();
}