Remove "it's a secret" splash screen.

This commit is contained in:
Nick Martin
2012-04-07 20:00:18 -07:00
parent d1d69cc359
commit e805d56e43
2 changed files with 0 additions and 30 deletions

View File

@@ -1,19 +0,0 @@
<template name="splash">
<div id="splash_outer">
<div class="mask"></div>
<div class="dialog">
<h1>Meteor: Prerelease</h1>
<p><span class="hello">Hello friend!</span> You have been given access to an <em>early, private
preview</em> of Meteor.</p>
<ul>
<li><em>It's secret.</em> Please don't share the URL or blog
about it.</li>
<li>We are pushing new stuff constantly. Expect rapid change
and frequent API breakage.</li>
</ul>
<div class="submit">Got it. Let's get started!</div>
</div>
</div>
</template>

View File

@@ -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();
}
};