///<reference path=".#ts/client.d.ts" />

interface Templates {
	betRejectedNotification: Template;
}

Template.betRejectedNotification.onRendered(function() {
	Session.set('disableBetslip', false);
});

Template.betRejectedNotification.helpers({

	content: function() {
		var self: Notifications.NotificationClient = <any>this;
		return self.options.content;
	}
});
