render-core 1.3.25 → 1.3.27
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.
|
@@ -58,7 +58,7 @@ var AppController = /** @class */ (function () {
|
|
|
58
58
|
}
|
|
59
59
|
if (this.fields[fieldsKey].push) {
|
|
60
60
|
// @ts-ignore
|
|
61
|
-
this.fields[
|
|
61
|
+
this.fields[fieldsKey].callback(this.fields[fieldsKey]["data"], window.context);
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
};
|
|
@@ -7,7 +7,7 @@ import { isUnKnown } from "../../utility/checkUtility";
|
|
|
7
7
|
export function resolver_bind(nodes, data) {
|
|
8
8
|
for (var i = 0; i < nodes.length; i++) {
|
|
9
9
|
//对系统元素进行属性绑定
|
|
10
|
-
if (isUnKnown(nodes[i].nodeName)) {
|
|
10
|
+
if (!isUnKnown(nodes[i].nodeName)) {
|
|
11
11
|
var attributes = nodes[i].getAttributeNames();
|
|
12
12
|
for (var j = 0; j < attributes.length; j++) {
|
|
13
13
|
var result = attributes[j].match(/^@bind:([a-z]+)$/g);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "render-core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.27",
|
|
4
4
|
"description": "The core of render-js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"render",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"types": "index.d.ts",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "https://github.com
|
|
14
|
+
"url": "https://github.com:render-js/render-core.git"
|
|
15
15
|
},
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "mutian",
|