Move the access-level sync out of the share controller.

This means sync will work even for clients which don't show the share
button in the menu bar.
This commit is contained in:
Shane Kilkelly 2017-10-26 11:04:00 +01:00
parent f9899e8047
commit 62d170e7a0
2 changed files with 5 additions and 5 deletions

View file

@ -185,4 +185,9 @@ define [
# User can append ?ft=somefeature to url to activate a feature toggle
ide.featureToggle = location?.search?.match(/^\?ft=(\w+)$/)?[1]
ide.socket.on 'project:publicAccessLevel:changed', (data) =>
if data.newAccessLevel?
ide.$scope.project.publicAccesLevel = data.newAccessLevel
$scope.$digest()
angular.bootstrap(document.body, ["SharelatexApp"])

View file

@ -17,11 +17,6 @@ define [
ide.$scope.project.tokens = data.tokens
$scope.$digest()
ide.socket.on 'project:publicAccessLevel:changed', (data) =>
if data.newAccessLevel?
ide.$scope.project.publicAccesLevel = data.newAccessLevel
$scope.$digest()
ide.socket.on 'project:membership:changed', (data) =>
if data.members
projectMembers.getMembers()