浏览代码

strophe-full wrapper has been renamed to strophe.

JC Brand 10 年之前
父节点
当前提交
66bfdbd4c8
共有 5 个文件被更改,包括 10 次插入10 次删除
  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-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'] }
     }
 });
 

+ 1 - 1
src/deps-website.js

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

+ 1 - 1
src/strophe.muc.js

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

+ 1 - 1
src/strophe.roster.js

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

+ 1 - 1
src/strophe.vcard.js

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