grocy/js/viewjs/choressettings.js
Katharina Bogad 2a7fbbecf8 Fix bugs
2021-06-24 22:18:19 +02:00

19 lines
338 B
JavaScript

function choressettingsView(Grocy, scope = null)
{
var $scope = $;
if (scope != null)
{
$scope = (selector) => $(scope).find(selector);
}
Grocy.Use("numberpicker");
$scope("#chores_due_soon_days").val(Grocy.UserSettings.chores_due_soon_days);
RefreshLocaleNumberInput();
}
window.choressettingsView = choressettingsView