fix '~' completion in add folder (fix #1478)

This commit is contained in:
Francois-Xavier Gsell
2015-04-10 15:34:24 +08:00
parent 7df9c1b6e4
commit b95a6ccf80
2 changed files with 4 additions and 0 deletions

View File

@@ -901,6 +901,9 @@ angular.module('syncthing.core')
$scope.directoryList = [];
$scope.$watch('currentFolder.path', function (newvalue) {
if (newvalue && newvalue.trim().charAt(0) == '~') {
$scope.currentFolder.path = $scope.system.tilde + newvalue.trim().substring(1)
}
$http.get(urlbase + '/system/browse', {
params: { current: newvalue }
}).success(function (data) {