strophe-full wrapper has been renamed to strophe.

This commit is contained in:
JC Brand 2015-02-01 18:56:05 +01:00
parent f283f6bce5
commit 66bfdbd4c8
5 changed files with 10 additions and 10 deletions

12
main.js
View File

@ -30,7 +30,7 @@ require.config({
"strophe-base64": "components/strophe/src/base64",
"strophe-bosh": "components/strophe/src/bosh",
"strophe-core": "components/strophe/src/core",
"strophe-full": "components/strophe/src/wrapper",
"strophe": "components/strophe/src/wrapper",
"strophe-md5": "components/strophe/src/md5",
"strophe-sha1": "components/strophe/src/sha1",
"strophe-websocket": "components/strophe/src/websocket",
@ -168,11 +168,11 @@ require.config({
'crypto.sha1': { deps: ['crypto.core'] },
'crypto.sha256': { deps: ['crypto.core'] },
'bigint': { deps: ['crypto'] },
'strophe.disco': { deps: ['strophe-full'] },
'strophe.muc': { deps: ['strophe-full'] },
'strophe.register': { deps: ['strophe-full'] },
'strophe.roster': { deps: ['strophe-full'] },
'strophe.vcard': { deps: ['strophe-full'] }
'strophe.disco': { deps: ['strophe'] },
'strophe.muc': { deps: ['strophe'] },
'strophe.register': { deps: ['strophe'] },
'strophe.roster': { deps: ['strophe'] },
'strophe.vcard': { deps: ['strophe'] }
}
});

View File

@ -4,7 +4,7 @@ define("converse-dependencies", [
"utils",
"otr",
"moment",
"strophe-full",
"strophe",
"strophe.muc",
"strophe.roster",
"strophe.vcard",

View File

@ -11,7 +11,7 @@
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define([
"strophe-full"
"strophe"
], function (Strophe) {
factory(
Strophe.Strophe,

View File

@ -17,7 +17,7 @@
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define([
"strophe-full"
"strophe"
], function (Strophe) {
factory(
Strophe.Strophe,

View File

@ -9,7 +9,7 @@
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define([
"strophe-full"
"strophe"
], function (Strophe) {
factory(
Strophe.Strophe,