mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
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();
|
|
}
|
|
};
|