diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-05-07 17:07:13 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-05-07 17:07:13 +0200 |
| commit | a6e4f48d8f5636eb7ce0affed789990dd653e484 (patch) | |
| tree | a81941758a4c1cdd8eb2d1320a0bfea491708ef1 /StoneIsland/www/js/lib/nav/IntroView.js | |
| parent | a0a1eb402d84be81000ed608d3da40a495cc6d34 (diff) | |
adding modal and covid19 faq link
Diffstat (limited to 'StoneIsland/www/js/lib/nav/IntroView.js')
| -rwxr-xr-x | StoneIsland/www/js/lib/nav/IntroView.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/StoneIsland/www/js/lib/nav/IntroView.js b/StoneIsland/www/js/lib/nav/IntroView.js index c075619a..8cb92b53 100755 --- a/StoneIsland/www/js/lib/nav/IntroView.js +++ b/StoneIsland/www/js/lib/nav/IntroView.js @@ -14,6 +14,7 @@ var IntroView = View.extend({ this.compass = this.$("#compass").get(0) this.orient = this.deviceorientation.bind(this) this.$alert.hide() + this.modal = new IntroModal() }, show: function(){ @@ -21,6 +22,7 @@ var IntroView = View.extend({ window.addEventListener("deviceorientation", this.orient) app.footer.hide() this.orient({ alpha: 0 }) + this.modal.check() }, hide: function(){ |
