diff --git a/services/web/app/views/project/editor/left-menu.pug b/services/web/app/views/project/editor/left-menu.pug index c1ff891844..2cedc0b37e 100644 --- a/services/web/app/views/project/editor/left-menu.pug +++ b/services/web/app/views/project/editor/left-menu.pug @@ -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")} diff --git a/services/web/public/coffee/ide/test-controls/controllers/TestControlsController.coffee b/services/web/public/coffee/ide/test-controls/controllers/TestControlsController.coffee index 0dca64dc5b..881d03d3cb 100644 --- a/services/web/public/coffee/ide/test-controls/controllers/TestControlsController.coffee +++ b/services/web/public/coffee/ide/test-controls/controllers/TestControlsController.coffee @@ -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"