mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 12:53:31 +02:00
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
module.exports = function($scope, SettingsService) {
|
|
$scope.resetSettings = function() {
|
|
SettingsService.reset()
|
|
alert('Settings cleared')
|
|
}
|
|
|
|
}
|