summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorJakob Borg <jakob@nym.se>2014-03-08 23:19:33 +0100
committerJakob Borg <jakob@nym.se>2014-03-08 23:19:33 +0100
commita88e4db1ee23cfcee63857098cff1c2032052252 (patch)
tree5394b621e9ba8af6f9546c74f94fdbaed827f916 /gui
parent0ebd4a6ba10ca4cd7bb5fdb8c8af5a33b1141b85 (diff)
Option to not start browser (fixes #84)
Diffstat (limited to 'gui')
-rw-r--r--gui/app.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/app.js b/gui/app.js
index fbf0a19fab..92a1a605ce 100644
--- a/gui/app.js
+++ b/gui/app.js
@@ -32,6 +32,7 @@ syncthing.controller('SyncthingCtrl', function ($scope, $http) {
{id: 'FollowSymlinks', descr: 'Follow Symlinks', type: 'bool', restart: true},
{id: 'GlobalAnnEnabled', descr: 'Global Announce', type: 'bool', restart: true},
{id: 'LocalAnnEnabled', descr: 'Local Announce', type: 'bool', restart: true},
+ {id: 'StartBrowser', descr: 'Start Browser', type: 'bool'},
];
function modelGetSucceeded() {
@@ -317,7 +318,7 @@ syncthing.controller('SyncthingCtrl', function ($scope, $http) {
}
return errors;
};
-
+
$scope.clearErrors = function () {
$scope.seenError = $scope.errors[$scope.errors.length - 1].Time;
};