qcobjects-sdk 2.4.43 → 2.4.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VERSION +1 -1
- package/package.json +1 -1
- package/src/QCObjects-SDK.js +2 -2
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.44
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qcobjects-sdk",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.44",
|
|
4
4
|
"description": "QCObjects SDK is a set of Controllers, Views and Components that are elementary and useful to assist developers to build applications under MVC patterns using QCObjects, Cross Browser Javascript Framework for MVC Patterns",
|
|
5
5
|
"main": "src/index.cjs",
|
|
6
6
|
"module": "src/index.mjs",
|
package/src/QCObjects-SDK.js
CHANGED
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
var relativeImportPath = CONFIG.get("relativeImportPath");
|
|
52
52
|
var external = (!CONFIG.get("useLocalSDK")) ? (true) : (false);
|
|
53
53
|
if (external) {
|
|
54
|
-
CONFIG.set("remoteImportsPath", "https://sdk.qcobjects.dev/v2.4/js/");
|
|
54
|
+
CONFIG.set("remoteImportsPath", "https://sdk.qcobjects.dev/v2.4/src/js/");
|
|
55
55
|
} else {
|
|
56
|
-
CONFIG.set("relativeImportPath", "qcobjects-sdk/js/");
|
|
56
|
+
CONFIG.set("relativeImportPath", "qcobjects-sdk/src/js/");
|
|
57
57
|
}
|
|
58
58
|
if (typeof _top._DOMCreateElement === "undefined") {
|
|
59
59
|
_top._DOMCreateElement = function (elementName) {
|