From 8067432e09115d4d27c078131c5679ffadb372ac Mon Sep 17 00:00:00 2001 From: James Allen Date: Tue, 8 Jul 2014 13:29:09 +0100 Subject: [PATCH] Fix include paths --- .../aceEditor/auto-complete/AutoCompleteManager.coffee | 4 ++-- .../directives/aceEditor/spell-check/SpellCheckManager.coffee | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee index 20f451e040..9567f56fe2 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee @@ -1,6 +1,6 @@ define [ - "ide/editor/auto-complete/SuggestionManager" - "ide/editor/auto-complete/Snippets" + "ide/editor/directives/aceEditor/auto-complete/SuggestionManager" + "ide/editor/directives/aceEditor/auto-complete/Snippets" "ace/autocomplete/util" "ace/autocomplete" "ace/range" diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/spell-check/SpellCheckManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/spell-check/SpellCheckManager.coffee index 2f9838a9ab..e8b3a97a0f 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/spell-check/SpellCheckManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/spell-check/SpellCheckManager.coffee @@ -1,5 +1,5 @@ define [ - "ide/editor/spell-check/HighlightedWordManager" + "ide/editor/directives/aceEditor/spell-check/HighlightedWordManager" "ace/range" ], (HighlightedWordManager) -> Range = require("ace/range").Range