mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 23:59:01 +02:00
7 lines
166 B
CoffeeScript
7 lines
166 B
CoffeeScript
define [
|
|
"base"
|
|
], (App) ->
|
|
App.controller "ChatButtonController", ["$scope", ($scope) ->
|
|
$scope.toggleChat = () ->
|
|
$scope.ui.chatOpen = !$scope.ui.chatOpen
|
|
] |