mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-08 00:29:04 +02:00
11 lines
272 B
CoffeeScript
11 lines
272 B
CoffeeScript
define [
|
|
"base"
|
|
"ace/ace"
|
|
], (App) ->
|
|
App.controller "TestControlsController", ($scope) ->
|
|
|
|
$scope.richText = () ->
|
|
current = window.location.toString()
|
|
target = "#{current}#{if window.location.search then '&' else '?'}rt=true"
|
|
window.location.href = target
|