From 393dd6150d0950a561ec62c97be1afd8b6e649c3 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Fri, 17 Jul 2015 16:42:00 +0200 Subject: [PATCH] Use the Strophe.NS.XFORM constant --- converse.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/converse.js b/converse.js index 1447f5005..b2f5d9db3 100644 --- a/converse.js +++ b/converse.js @@ -1256,10 +1256,6 @@ } }, - insertIntoPage: function () { - this.$el.insertAfter(converse.chatboxviews.get("controlbox").$el); - }, - render: function () { this.$el.attr('id', this.model.get('box_id')) .html(converse.templates.chatbox( @@ -1276,6 +1272,11 @@ return this.showStatusMessage(); }, + insertIntoPage: function () { + this.$el.insertAfter(converse.chatboxviews.get("controlbox").$el); + return this; + }, + initDragResize: function () { this.prev_pageY = 0; // To store last known mouse position if (converse.connection.connected) { @@ -2927,7 +2928,7 @@ // Send an IQ stanza with the room configuration. var iq = $iq({to: this.model.get('jid'), type: "set"}) .c("query", {xmlns: Strophe.NS.MUC_OWNER}) - .c("x", {xmlns: "jabber:x:data", type: "submit"}); + .c("x", {xmlns: Strophe.NS.XFORM, type: "submit"}); _.each(config, function (node) { iq.cnode(node).up(); }); return converse.connection.sendIQ(iq.tree(), onSuccess, onError); }, @@ -6185,7 +6186,7 @@ var queryid = converse.connection.getUniqueId(); var stanza = $iq({'type':'set'}).c('query', {'xmlns':Strophe.NS.MAM, 'queryid':queryid}); if (typeof options != "undefined") { - stanza.c('x', {'xmlns':'jabber:x:data'}) + stanza.c('x', {'xmlns':Strophe.NS.XFORM}) .c('field', {'var':'FORM_TYPE'}) .c('value').t(Strophe.NS.MAM).up().up();