Browse Source

Remove duplicate folder

Josh Engebretson 9 years ago
parent
commit
9ebbd9a13f
1 changed files with 3 additions and 5 deletions
  1. 3 5
      Script/AtomicEditor/ui/modal/info/AtomicNETWindow.ts

+ 3 - 5
Script/AtomicEditor/ui/modal/info/AtomicNETWindow.ts

@@ -75,15 +75,13 @@ class AtomicNETWindow extends ModalWindow {
 
     generateAtomicNETText(): string {
 
-        var installText:string;
+        let ideText:string = Atomic.platform == "Windows" ? "Visual Studio" : "Xamarin Studio";
 
-        var ideText:string = Atomic.platform == "Windows" ? "Visual Studio" : "Xamarin Studio";
-
-        var installText = `Please install ${ideText} with <color #D4FB79>Xamarin.Android</color> and <color #D4FB79>Xamarin.iOS</color>`;
+        let installText = `Please install ${ideText} with <color #D4FB79>Xamarin.Android</color> and <color #D4FB79>Xamarin.iOS</color>`;
 
         this.downloadButton.text = `Download ${ideText}`;
 
-        var text = "";
+        let text = "";
 
         text += `
 Atomic C# is integrated with <color #D4FB79>Visual Studio</color> and <color #D4FB79>Xamarin Studio</color> to provide a first class editing, debugging, and deployment experience.