Merge pull request #3921 from overleaf/ae-remove-broadcast-open

Remove $scope.$broadcast('open') from React controllers

GitOrigin-RevId: 40780c373e14c4dbbd921460638bcb4616f34c86
This commit is contained in:
Alf Eaton 2021-04-21 10:57:16 +01:00 committed by Copybot
parent 07ec567b07
commit f9bda25072

View file

@ -30,11 +30,6 @@ export default App.controller(
$scope.projectName = project.name $scope.projectName = project.name
$scope.show = true $scope.show = true
// TODO: is this needed
window.setTimeout(() => {
$scope.$broadcast('open')
}, 200)
} }
}) })
} }