From e805d56e430eaaba92b23e81f5bdbddeb097db22 Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Sat, 7 Apr 2012 20:00:18 -0700 Subject: [PATCH] Remove "it's a secret" splash screen. --- docs/client/splash.html | 19 ------------------- docs/client/splash.js | 11 ----------- 2 files changed, 30 deletions(-) delete mode 100644 docs/client/splash.html delete mode 100644 docs/client/splash.js diff --git a/docs/client/splash.html b/docs/client/splash.html deleted file mode 100644 index f5490930d0..0000000000 --- a/docs/client/splash.html +++ /dev/null @@ -1,19 +0,0 @@ - diff --git a/docs/client/splash.js b/docs/client/splash.js deleted file mode 100644 index 39cf956faa..0000000000 --- a/docs/client/splash.js +++ /dev/null @@ -1,11 +0,0 @@ -Meteor.startup(function () { - if (!document.cookie.match("splash=")) - $('body').append(Meteor.ui.render(Template.splash)); -}); - -Template.splash.events = { - 'click .submit': function () { - document.cookie = "splash=ack;expires=Sat, 23 Mar 2013 00:00:0 GMT"; - $('#splash_outer').remove(); - } -};