mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
561b62f7db
This is to be used for hidden features that are not yet ready to ship, and would otherwise be hidden behind a console command. Append `?tc=true` to the project url to reveal this panel.
14 lines
341 B
CoffeeScript
14 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'
|