overleaf/services/web/public/coffee/ide/test-controls/controllers/TestControlsController.coffee
2018-05-29 10:46:22 +01:00

16 lines
426 B
CoffeeScript

define [
"base"
"ace/ace"
], (App) ->
App.controller "TestControlsController", ($scope) ->
$scope.openProjectLinkedFileModal = () ->
window.openProjectLinkedFileModal()
$scope.openLinkedFileModal = () ->
window.openLinkedFileModal()
$scope.richText = () ->
current = window.location.toString()
target = "#{current}#{if window.location.search then '&' else '?'}rt=true"
window.location.href = target