Commit 66bfdbd4 authored by JC Brand's avatar JC Brand

strophe-full wrapper has been renamed to strophe.

parent f283f6bc
...@@ -30,7 +30,7 @@ require.config({ ...@@ -30,7 +30,7 @@ require.config({
"strophe-base64": "components/strophe/src/base64", "strophe-base64": "components/strophe/src/base64",
"strophe-bosh": "components/strophe/src/bosh", "strophe-bosh": "components/strophe/src/bosh",
"strophe-core": "components/strophe/src/core", "strophe-core": "components/strophe/src/core",
"strophe-full": "components/strophe/src/wrapper", "strophe": "components/strophe/src/wrapper",
"strophe-md5": "components/strophe/src/md5", "strophe-md5": "components/strophe/src/md5",
"strophe-sha1": "components/strophe/src/sha1", "strophe-sha1": "components/strophe/src/sha1",
"strophe-websocket": "components/strophe/src/websocket", "strophe-websocket": "components/strophe/src/websocket",
...@@ -168,11 +168,11 @@ require.config({ ...@@ -168,11 +168,11 @@ require.config({
'crypto.sha1': { deps: ['crypto.core'] }, 'crypto.sha1': { deps: ['crypto.core'] },
'crypto.sha256': { deps: ['crypto.core'] }, 'crypto.sha256': { deps: ['crypto.core'] },
'bigint': { deps: ['crypto'] }, 'bigint': { deps: ['crypto'] },
'strophe.disco': { deps: ['strophe-full'] }, 'strophe.disco': { deps: ['strophe'] },
'strophe.muc': { deps: ['strophe-full'] }, 'strophe.muc': { deps: ['strophe'] },
'strophe.register': { deps: ['strophe-full'] }, 'strophe.register': { deps: ['strophe'] },
'strophe.roster': { deps: ['strophe-full'] }, 'strophe.roster': { deps: ['strophe'] },
'strophe.vcard': { deps: ['strophe-full'] } 'strophe.vcard': { deps: ['strophe'] }
} }
}); });
......
...@@ -4,7 +4,7 @@ define("converse-dependencies", [ ...@@ -4,7 +4,7 @@ define("converse-dependencies", [
"utils", "utils",
"otr", "otr",
"moment", "moment",
"strophe-full", "strophe",
"strophe.muc", "strophe.muc",
"strophe.roster", "strophe.roster",
"strophe.vcard", "strophe.vcard",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
if (typeof define === 'function' && define.amd) { if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module. // AMD. Register as an anonymous module.
define([ define([
"strophe-full" "strophe"
], function (Strophe) { ], function (Strophe) {
factory( factory(
Strophe.Strophe, Strophe.Strophe,
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
if (typeof define === 'function' && define.amd) { if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module. // AMD. Register as an anonymous module.
define([ define([
"strophe-full" "strophe"
], function (Strophe) { ], function (Strophe) {
factory( factory(
Strophe.Strophe, Strophe.Strophe,
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
if (typeof define === 'function' && define.amd) { if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module. // AMD. Register as an anonymous module.
define([ define([
"strophe-full" "strophe"
], function (Strophe) { ], function (Strophe) {
factory( factory(
Strophe.Strophe, Strophe.Strophe,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment