mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
15 lines
341 B
CoffeeScript
15 lines
341 B
CoffeeScript
|
define [
|
||
|
"base"
|
||
|
"ace/ace"
|
||
|
], (App) ->
|
||
|
App.controller "TestControlsController", ($scope) ->
|
||
|
|
||
|
$scope.openProjectLinkedFileModal = () ->
|
||
|
window.openProjectLinkedFileModal()
|
||
|
|
||
|
$scope.openLinkedFileModal = () ->
|
||
|
window.openLinkedFileModal()
|
||
|
|
||
|
$scope.richText = () ->
|
||
|
window.location.href = window.location.toString() + '&rt=true'
|