Rename init to initialize

Also make sure to hash all localStorage keys
This commit is contained in:
JC Brand 2013-04-14 01:08:24 +02:00
parent f2ae33d47c
commit a6fd9450a9

View File

@ -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));