Revert "add automated fadeout to sdc splashscreen" 92/90392/1
authorkaihlavi <l.kaihlavirt@partner.samsung.com>
Mon, 24 Jun 2019 15:01:18 +0000 (18:01 +0300)
committerkaihlavi <l.kaihlavirt@partner.samsung.com>
Mon, 24 Jun 2019 15:02:27 +0000 (18:02 +0300)
Issue-ID: SDC-2384
This reverts commit 4f514b1c3f1c688345c750281097925ac22417ca.
Signed-off-by: kaihlavi <l.kaihlavirt@partner.samsung.com>
Change-Id: I4f35c5771795750c6af71c41c7d8dc08001e833c

catalog-ui/src/app/view-models/welcome/welcome-view.ts

index cb52c0c..a29a539 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- *
+ * 
  *      http://www.apache.org/licenses/LICENSE-2.0
- *
+ * 
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -43,13 +43,7 @@ export class WelcomeViewModel {
             this.loadImages(():void=> {
                 window.setTimeout(():void =>{
                     $(".sdc-welcome-new-page").addClass("animated fadeIn");
-                    window.setTimeout(():void =>{
-                      $(".sdc-welcome-new-page").addClass("animated fadeOut");
-                      window.setTimeout(():void =>{
-                        this.$state.go("dashboard", {});
-                      },1000);
-                    },3000);
-                },0);
+                },1000);
             });
         },0);
     }
@@ -79,5 +73,5 @@ export class WelcomeViewModel {
         };
         img.src = url;
     };
-
+    
 }