Browse Source

Pull request #1826: 无JIRA任务 优化一下context的传递

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit '8fed6e639d45795470dc263cbc58bcd8a343c683':
  优化一下context的传递
es6
guy 4 years ago
parent
commit
ad82204dcf
  1. 4
      dist/fix/fix.compact.ie.js
  2. 4
      dist/fix/fix.compact.js

4
dist/fix/fix.compact.ie.js vendored

@ -82,7 +82,7 @@
if (p instanceof Fix.Model || p.store || p.__cacheStore) {
break;
}
p = p._context || p._parent || (p.options && p.options.element);
p = p._parent || (p.options && p.options.element) || p._context;
}
if (p) {
if (p instanceof Fix.Model) {
@ -106,7 +106,7 @@
function createStore () {
var needPop = false;
if (_global.Fix && this._store) {
var store = findStore(this.options.context || this._context || this._parent || this.options.element);
var store = findStore(this.options.context || this._parent || this.options.element || this._context);
if (store) {
pushTarget(store);
needPop = true;

4
dist/fix/fix.compact.js vendored

@ -86,7 +86,7 @@
if (p instanceof Fix.Model || p.store || p.__cacheStore) {
break;
}
p = p._context || p._parent || (p.options && p.options.element);
p = p._parent || (p.options && p.options.element) || p._context;
}
if (p) {
if (p instanceof Fix.Model) {
@ -114,7 +114,7 @@
function createStore () {
var needPop = false;
if (_global.Fix && this._store) {
var store = findStore(this.options.context || this._context || this._parent || this.options.element);
var store = findStore(this.options.context || this._parent || this.options.element || this._context);
if (store) {
pushTarget(store);
needPop = true;

Loading…
Cancel
Save