diff --git a/lib/client.js b/lib/client.js index 2185676..0ab6ccb 100644 --- a/lib/client.js +++ b/lib/client.js @@ -183,6 +183,12 @@ AT.prototype.ensureSignedIn = function() { }; // Initialization + +// Initialization +AT.prototype.init = function() { + console.warn("[AccountsTemplates] There is no more need to call AccountsTemplates.init()! Simply remove the call ;-)"); +}; + AT.prototype._init = function() { if (this._initialized) return; diff --git a/lib/server.js b/lib/server.js index 9baa438..99538d2 100644 --- a/lib/server.js +++ b/lib/server.js @@ -1,4 +1,9 @@ // Initialization + +AT.prototype.init = function() { + console.warn("[AccountsTemplates] There is no more need to call AccountsTemplates.init()! Simply remove the call ;-)"); +}; + AT.prototype._init = function() { if (this._initialized) return;