diff --git a/app/app.js b/app/app.js index 947a7ba..3d8ebe2 100644 --- a/app/app.js +++ b/app/app.js @@ -104,8 +104,12 @@ var app = new Vue({ // Set the "current" main navigation item based on the current route. this.selectMenuItemForCurrentUrl(); - // Once the app is fully displayed, hide the overlay. - this.hideFullPageOverlay(); + this.$nextTick(function () { + // Code that will run only after the entire view has been rendered. + + // Once the app is fully rendered, hide the overlay. + this.hideFullPageOverlay(); + }); this.status = "loaded"; // Now we can start watching for changes in 'sections' data. }, diff --git a/index.html b/index.html index 2e6f970..55c5110 100644 --- a/index.html +++ b/index.html @@ -13,11 +13,13 @@
- - +