Browse Source

strophe-full wrapper has been renamed to strophe.

JC Brand 10 years ago
parent
commit
66bfdbd4c8
5 changed files with 10 additions and 10 deletions
  1. 6 6
      main.js
  2. 1 1
      src/deps-website.js
  3. 1 1
      src/strophe.muc.js
  4. 1 1
      src/strophe.roster.js
  5. 1 1
      src/strophe.vcard.js

+ 6 - 6
main.js

@@ -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({
         '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.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'] }
     }
     }
 });
 });
 
 

+ 1 - 1
src/deps-website.js

@@ -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",

+ 1 - 1
src/strophe.muc.js

@@ -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,

+ 1 - 1
src/strophe.roster.js

@@ -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,

+ 1 - 1
src/strophe.vcard.js

@@ -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,