sportsbet-mobile
Version:
Sportsbet mobile
19 lines (15 loc) • 408 B
text/typescript
interface Templates {
force_money_error: Template;
}
Template.force_money_error.helpers({
funUrl: function () {
return Session.get('funUrl');
}
});
Template.force_money_error.destroyed = function () {
Session.set('splashTemplate', undefined);
Session.set('splashMessage', undefined);
};
Template.force_money_error.rendered = function () {
Session.set('funUrl', window.location.href + '/fun');
};