Missing ;

This commit is contained in:
brantje 2016-10-07 10:41:47 +02:00
parent 3ccd26e75b
commit 538a996892
No known key found for this signature in database
GPG key ID: 5FF1D117F918687F

View file

@ -229,6 +229,8 @@ angular.module('passmanApp')
}); });
}); });
}; };
$scope.sharing_complete = true; $scope.sharing_complete = true;
$scope.applyShare = function () { $scope.applyShare = function () {
$scope.sharing_complete = false; $scope.sharing_complete = false;
@ -253,7 +255,7 @@ angular.module('passmanApp')
expire_views: $scope.share_settings.linkSharing.settings.expire_views expire_views: $scope.share_settings.linkSharing.settings.expire_views
}; };
ShareService.createPublicSharedCredential(shareObj).then(function () { ShareService.createPublicSharedCredential(shareObj).then(function () {
var hash = window.btoa($scope.storedCredential.guid + '<::>' + enc_key) var hash = window.btoa($scope.storedCredential.guid + '<::>' + enc_key);
$scope.share_link = $location.$$protocol + '://' + $location.$$host + OC.generateUrl('apps/passman/share/public#') + hash; $scope.share_link = $location.$$protocol + '://' + $location.$$host + OC.generateUrl('apps/passman/share/public#') + hash;
}) })
} }