Remove linked-files items from the left-menu test controls

This commit is contained in:
Shane Kilkelly 2018-06-15 15:34:37 +01:00
parent 708e809df6
commit 67dcbff450
2 changed files with 0 additions and 21 deletions

View file

@ -69,18 +69,6 @@ aside#left-menu.full-size(
a(href="#" ng-click="richText()")
i.fa.fa-exclamation.fa-fw
| Rich Text
li
a(href="#" ng-click="openProjectLinkedFileModal()")
i.fa.fa-exclamation.fa-fw
| Project-Linked-File Modal
li
a(href="#" ng-click="openProjectOutputLinkedFileModal()")
i.fa.fa-exclamation.fa-fw
| Project-Output-Linked-File Modal
li
a(href="#" ng-click="openLinkedFileModal()")
i.fa.fa-exclamation.fa-fw
| URL-Linked-File Modal
h4(ng-show="!anonymous") #{translate("settings")}

View file

@ -4,15 +4,6 @@ define [
], (App) ->
App.controller "TestControlsController", ($scope) ->
$scope.openProjectLinkedFileModal = () ->
window.openProjectLinkedFileModal()
$scope.openProjectOutputLinkedFileModal = () ->
window.openProjectOutputLinkedFileModal()
$scope.openLinkedFileModal = () ->
window.openLinkedFileModal()
$scope.richText = () ->
current = window.location.toString()
target = "#{current}#{if window.location.search then '&' else '?'}rt=true"