overleaf/services/web/public/coffee/app/ide/chat/controllers/ChatButtonController.coffee

7 lines
166 B
CoffeeScript
Raw Normal View History

define [
"base"
], (App) ->
App.controller "ChatButtonController", ["$scope", ($scope) ->
$scope.toggleChat = () ->
$scope.ui.chatOpen = !$scope.ui.chatOpen
]