From a6fd9450a9b6b08e6a6e42b78fa787311a2a9caf Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sun, 14 Apr 2013 01:08:24 +0200 Subject: [PATCH] Rename init to initialize Also make sure to hash all localStorage keys --- converse.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/converse.js b/converse.js index 803727a75..e669b862d 100644 --- a/converse.js +++ b/converse.js @@ -1912,7 +1912,7 @@ } }; - xmppchat.init = function () { + xmppchat.initialize = function (connection) { this.connection = connection; this.connection.xmlInput = function (body) { console.log(body); }; this.connection.xmlOutput = function (body) { console.log(body); }; @@ -1927,7 +1927,7 @@ this.xmppstatus = new this.XMPPStatus({id:1}); this.xmppstatus.localStorage = new Backbone.LocalStorage( - 'converse.xmppstatus'+this.bare_jid); + hex_sha1('converse.xmppstatus-'+this.bare_jid)); this.chatboxes.onConnected(); this.rosterview = new this.RosterView({'model':this.roster}); @@ -1985,7 +1985,7 @@ $(document).unbind('jarnxmpp.connected'); $(document).bind('jarnxmpp.connected', $.proxy(function (ev, connection) { - this.init(); + this.initialize(connection); }, this)); }, xmppchat));