Cleanup code for all views.

This commit is contained in:
Gunther Brunner
2015-08-31 17:18:50 +09:00
parent 4db67dd703
commit e12df4c0cb
17 changed files with 1 additions and 259 deletions

View File

@@ -4,20 +4,4 @@ module.exports = function ($scope, SettingsService) {
console.log('Settings cleared')
}
// $scope.resetSettings = function () {
// var title = 'Reset Settings';
// var msg = 'Are you sure you want to revert all settings to ' +
// 'their default values?';
// var btns = [
// {result: 'cancel', label: 'Cancel'},
// {result: 'ok', label: 'OK', cssClass: 'btn-primary'}
// ];
// $dialog.messageBox(title, msg, btns)
// .open()
// .then(function (result) {
// if (result === 'ok') {
// //SettingsService.clearAll();
// }
// });
// };
}