mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
8 lines
164 B
JavaScript
8 lines
164 B
JavaScript
module.exports = function ($scope, SettingsService) {
|
|
$scope.resetSettings = function () {
|
|
SettingsService.reset()
|
|
console.log('Settings cleared')
|
|
}
|
|
|
|
}
|