Browse Source

Confirmed that using Atomic:// instead of File:// works in windows...back to OSX land.

Shaddock Heath 9 years ago
parent
commit
b4ff7149c5

+ 0 - 8
Script/AtomicEditor/ui/resourceEditors/AbstractTextResourceEditorBuilder.ts

@@ -40,14 +40,6 @@ export abstract class AbstractTextResourceEditorBuilder implements Editor.Extens
      * @return {string}
      */
     getEditorUrl(): string {
-/*
-        Reference -- delete when working in osx and windows
-        #ifdef ATOMIC_PLATFORM_OSX
-            String url = "file://" + codeEditorDir;
-        #else
-            String url = "file:///" + codeEditorDir;
-        #endif
-*/
         return `atomic://${ToolCore.toolEnvironment.toolDataDir}CodeEditor/Editor.html`;
     }