diff --git a/interactiveminingv3.tgz b/interactiveminingv3.tgz index 8f28f04..275e866 100644 Binary files a/interactiveminingv3.tgz and b/interactiveminingv3.tgz differ diff --git a/src/app/pages/wellcome/wellcome.component.ts b/src/app/pages/wellcome/wellcome.component.ts index f84f334..16de259 100644 --- a/src/app/pages/wellcome/wellcome.component.ts +++ b/src/app/pages/wellcome/wellcome.component.ts @@ -15,33 +15,36 @@ import {HelperFunctions} from '../../openaireLibrary/utils/HelperFunctions.class uk-scrollspy="{"target":"[uk-scrollspy-class]","cls":"uk-animation-fade","delay":false}" tm-header-transparent="light" tm-header-transparent-placeholder="" uk-height-viewport="offset-top: true"> -
-
-
Build an Open Research Gateway for your Community
-

Turn Open Science into practice

-
Share and link your research results.
- Across organizations, across borders.
Customized to your needs. +
+ +
+
+
Build an Open Research Gateway for your Community
+

Turn Open Science into practice

+
Share and link your research results.
+ Across organizations, across borders.
Customized to your needs. +
+
+
- -
-
-
-
0 && !showLoading" class="uk-container uk-container-large uk-section-small"> +
+
-
-
-
-
- - @@ -83,11 +87,13 @@ import {HelperFunctions} from '../../openaireLibrary/utils/HelperFunctions.class export class WellcomeComponent implements OnInit { properties: EnvProperties = null; public communities: CommunityInfo[] = []; + showLoading: boolean; constructor(private route: ActivatedRoute, private propertiesService: EnvironmentSpecificService, private _communitiesService: CommunitiesService) { } ngOnInit() { + this.showLoading = true; this.propertiesService.loadEnvironment().then(es => { this.propertiesService.setEnvProperties(es); this.properties = this.propertiesService.envSpecific; @@ -116,6 +122,7 @@ export class WellcomeComponent implements OnInit { } } } + this.showLoading = false; }); }); }