Autoreconnect

This commit is contained in:
vjrj 2018-03-07 11:44:56 +01:00
parent 4fafaf8ed5
commit 4954b907de
4 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,8 @@
/* global reconnecToServer */
import { Meteor } from 'meteor/meteor';
Meteor.startup(() => {
// Reconnect Function
reconnectToServer(5000, true);
});