Browse Source

context重构

es6
guy 4 years ago
parent
commit
829fa6de49
  1. 2
      dist/fix/fix.compact.ie.js
  2. 2
      dist/fix/fix.compact.js

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

@ -122,7 +122,7 @@
function createStore () {
var needPop = false;
if (_global.Fix && this._store) {
var store = findStore(this.options.context || this._parent || this.options.element || BI.Widget.context || this._context);
var store = findStore(this.options.context || this._parent || this.options.element || this._context);
if (store) {
pushTarget(store);
needPop = true;

2
dist/fix/fix.compact.js vendored

@ -135,7 +135,7 @@
function createStore () {
var needPop = false;
if (_global.Fix && this._store) {
var store = findStore(this.options.context || this._parent || this.options.element || BI.Widget.context || this._context);
var store = findStore(this.options.context || this._parent || this.options.element || this._context);
if (store) {
pushTarget(store);
needPop = true;

Loading…
Cancel
Save