diff --git a/app/views/project/editor/left-menu.pug b/app/views/project/editor/left-menu.pug
index c1ff891844dd7ffcc244489d17fa103bb5183be3..2cedc0b37e9c0a337d97dac6f48929c5b84f0028 100644
--- a/app/views/project/editor/left-menu.pug
+++ b/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/public/coffee/ide/test-controls/controllers/TestControlsController.coffee b/public/coffee/ide/test-controls/controllers/TestControlsController.coffee
index 0dca64dc5b36a8c07b75b88694ac9fad8a953cc8..881d03d3cb318fdbbcea489aa120aee41b3c290f 100644
--- a/public/coffee/ide/test-controls/controllers/TestControlsController.coffee
+++ b/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"