omi v1.5.2 - fix group-data problem
This commit is contained in:
parent
a30d37a1b3
commit
c499573325
24
README.md
24
README.md
|
@ -65,12 +65,12 @@ $ npm install omi
|
|||
|
||||
## CDN
|
||||
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.min.js](https://unpkg.com/omi@1.5.1/dist/omi.min.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.js](https://unpkg.com/omi@1.5.1/dist/omi.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.lite.min.js](https://unpkg.com/omi@1.5.1/dist/omi.lite.min.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.lite.js](https://unpkg.com/omi@1.5.1/dist/omi.lite.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.mustache.min.js](https://unpkg.com/omi@1.5.1/dist/omi.mustache.min.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.mustache.js](https://unpkg.com/omi@1.5.1/dist/omi.mustache.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.min.js](https://unpkg.com/omi@1.5.2/dist/omi.min.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.js](https://unpkg.com/omi@1.5.2/dist/omi.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.lite.min.js](https://unpkg.com/omi@1.5.2/dist/omi.lite.min.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.lite.js](https://unpkg.com/omi@1.5.2/dist/omi.lite.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.mustache.min.js](https://unpkg.com/omi@1.5.2/dist/omi.mustache.min.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.mustache.js](https://unpkg.com/omi@1.5.2/dist/omi.mustache.js)
|
||||
|
||||
## 感谢
|
||||
|
||||
|
@ -134,12 +134,12 @@ if using 'omi.lite.js' (without [mustache.js](https://github.com/janl/mustache.j
|
|||
|
||||
## CDN
|
||||
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.min.js](https://unpkg.com/omi@1.5.1/dist/omi.min.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.js](https://unpkg.com/omi@1.5.1/dist/omi.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.lite.min.js](https://unpkg.com/omi@1.5.1/dist/omi.lite.min.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.lite.js](https://unpkg.com/omi@1.5.1/dist/omi.lite.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.mustache.min.js](https://unpkg.com/omi@1.5.1/dist/omi.mustache.min.js)
|
||||
* [https://unpkg.com/omi@1.5.1/dist/omi.mustache.js](https://unpkg.com/omi@1.5.1/dist/omi.mustache.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.min.js](https://unpkg.com/omi@1.5.2/dist/omi.min.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.js](https://unpkg.com/omi@1.5.2/dist/omi.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.lite.min.js](https://unpkg.com/omi@1.5.2/dist/omi.lite.min.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.lite.js](https://unpkg.com/omi@1.5.2/dist/omi.lite.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.mustache.min.js](https://unpkg.com/omi@1.5.2/dist/omi.mustache.min.js)
|
||||
* [https://unpkg.com/omi@1.5.2/dist/omi.mustache.js](https://unpkg.com/omi@1.5.2/dist/omi.mustache.js)
|
||||
|
||||
## Thanks
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Omi v1.5.1 By dntzhang
|
||||
* Omi v1.5.2 By dntzhang
|
||||
* Github: https://github.com/AlloyTeam/omi
|
||||
* MIT Licensed.
|
||||
*/
|
||||
|
@ -1308,6 +1308,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
value: function update() {
|
||||
this.beforeUpdate();
|
||||
this._childrenBeforeUpdate(this);
|
||||
this._omiGroupDataCounter = {};
|
||||
if (this.renderTo) {
|
||||
this._render();
|
||||
} else {
|
||||
|
@ -1339,6 +1340,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
|
||||
root.children.forEach(function (child) {
|
||||
child.beforeUpdate();
|
||||
child._omiGroupDataCounter = {};
|
||||
_this2._childrenBeforeUpdate(child);
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Omi v1.5.1 By dntzhang
|
||||
* Omi v1.5.2 By dntzhang
|
||||
* Github: https://github.com/AlloyTeam/omi
|
||||
* MIT Licensed.
|
||||
*/
|
||||
|
@ -612,6 +612,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
value: function update() {
|
||||
this.beforeUpdate();
|
||||
this._childrenBeforeUpdate(this);
|
||||
this._omiGroupDataCounter = {};
|
||||
if (this.renderTo) {
|
||||
this._render();
|
||||
} else {
|
||||
|
@ -643,6 +644,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
|
||||
root.children.forEach(function (child) {
|
||||
child.beforeUpdate();
|
||||
child._omiGroupDataCounter = {};
|
||||
_this2._childrenBeforeUpdate(child);
|
||||
});
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Omi v1.5.1 By dntzhang
|
||||
* Omi v1.5.2 By dntzhang
|
||||
* Github: https://github.com/AlloyTeam/omi
|
||||
* MIT Licensed.
|
||||
*/
|
||||
|
@ -613,6 +613,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
value: function update() {
|
||||
this.beforeUpdate();
|
||||
this._childrenBeforeUpdate(this);
|
||||
this._omiGroupDataCounter = {};
|
||||
if (this.renderTo) {
|
||||
this._render();
|
||||
} else {
|
||||
|
@ -644,6 +645,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
|
||||
root.children.forEach(function (child) {
|
||||
child.beforeUpdate();
|
||||
child._omiGroupDataCounter = {};
|
||||
_this2._childrenBeforeUpdate(child);
|
||||
});
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "omi",
|
||||
"version": "1.5.1",
|
||||
"version": "1.5.2",
|
||||
"description": "Open and modern framework for building user interfaces.",
|
||||
"main": "dist/omi.js",
|
||||
"types": "index.d.ts",
|
||||
|
|
Loading…
Reference in New Issue