Add every 14 days refresh option

This commit is contained in:
Arik Fraimovich 2016-07-03 14:12:09 +03:00
parent 837073144f
commit 31edf9cf80

View File

@ -274,11 +274,15 @@
}); });
$scope.refreshOptions.push({ $scope.refreshOptions.push({
value: String(7 * 24 * 3600), value: String(7 * 24 * 3600),
name: 'Once a week' name: 'Every 7 days'
});
$scope.refreshOptions.push({
value: String(14 * 24 * 3600),
name: 'Every 14 days'
}); });
$scope.refreshOptions.push({ $scope.refreshOptions.push({
value: String(30 * 24 * 3600), value: String(30 * 24 * 3600),
name: 'Every 30d' name: 'Every 30 days'
}); });
$scope.$watch('refreshType', function() { $scope.$watch('refreshType', function() {