Browse Source

无JIRA任务 searcher标红问题

es6
windy 6 years ago
parent
commit
303c2f071e
  1. 2
      dist/base.js
  2. 2
      dist/bundle.ie.js
  3. 4
      dist/bundle.ie.min.js
  4. 2
      dist/bundle.js
  5. 6
      dist/bundle.min.js
  6. 25
      dist/demo.js
  7. 2
      dist/fineui.ie.js
  8. 4
      dist/fineui.ie.min.js
  9. 2
      dist/fineui.js
  10. 6
      dist/fineui.min.js
  11. 2
      dist/fineui_without_jquery_polyfill.js
  12. 2
      dist/utils.min.js
  13. 2
      src/base/single/text.js

2
dist/base.js vendored

@ -620,11 +620,13 @@ BI.Text = BI.inherit(BI.Single, {
doRedMark: function (keyword) {
var o = this.options;
o.keyword = keyword;
this.text.element.__textKeywordMarked__(o.text || o.value, keyword, o.py);
},
unRedMark: function () {
var o = this.options;
o.keyword = "";
this.text.element.__textKeywordMarked__(o.text || o.value, "", o.py);
},

2
dist/bundle.ie.js vendored

@ -35703,11 +35703,13 @@ BI.Text = BI.inherit(BI.Single, {
doRedMark: function (keyword) {
var o = this.options;
o.keyword = keyword;
this.text.element.__textKeywordMarked__(o.text || o.value, keyword, o.py);
},
unRedMark: function () {
var o = this.options;
o.keyword = "";
this.text.element.__textKeywordMarked__(o.text || o.value, "", o.py);
},

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.js vendored

@ -36107,11 +36107,13 @@ BI.Text = BI.inherit(BI.Single, {
doRedMark: function (keyword) {
var o = this.options;
o.keyword = keyword;
this.text.element.__textKeywordMarked__(o.text || o.value, keyword, o.py);
},
unRedMark: function () {
var o = this.options;
o.keyword = "";
this.text.element.__textKeywordMarked__(o.text || o.value, "", o.py);
},

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

25
dist/demo.js vendored

@ -6126,7 +6126,30 @@ Demo.HtapeLayout = BI.inherit(BI.Widget, {
};
}
});
BI.shortcut("demo.htape", Demo.HtapeLayout);/**
BI.shortcut("demo.htape", Demo.HtapeLayout);Demo.InlineVerticalLayout = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-absolute"
},
render: function () {
return {
type: "bi.inline_vertical_adapt",
items: [{
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 200
}, {
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 100
}]
};
}
});
BI.shortcut("demo.inline_vertical", Demo.InlineVerticalLayout);/**
* Created by User on 2017/3/22.
*/
Demo.LeftRightVerticalAdaptLayout = BI.inherit(BI.Widget, {

2
dist/fineui.ie.js vendored

@ -35945,11 +35945,13 @@ BI.Text = BI.inherit(BI.Single, {
doRedMark: function (keyword) {
var o = this.options;
o.keyword = keyword;
this.text.element.__textKeywordMarked__(o.text || o.value, keyword, o.py);
},
unRedMark: function () {
var o = this.options;
o.keyword = "";
this.text.element.__textKeywordMarked__(o.text || o.value, "", o.py);
},

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.js vendored

@ -36349,11 +36349,13 @@ BI.Text = BI.inherit(BI.Single, {
doRedMark: function (keyword) {
var o = this.options;
o.keyword = keyword;
this.text.element.__textKeywordMarked__(o.text || o.value, keyword, o.py);
},
unRedMark: function () {
var o = this.options;
o.keyword = "";
this.text.element.__textKeywordMarked__(o.text || o.value, "", o.py);
},

6
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui_without_jquery_polyfill.js vendored

@ -24859,11 +24859,13 @@ BI.Text = BI.inherit(BI.Single, {
doRedMark: function (keyword) {
var o = this.options;
o.keyword = keyword;
this.text.element.__textKeywordMarked__(o.text || o.value, keyword, o.py);
},
unRedMark: function () {
var o = this.options;
o.keyword = "";
this.text.element.__textKeywordMarked__(o.text || o.value, "", o.py);
},

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

2
src/base/single/text.js

@ -88,11 +88,13 @@ BI.Text = BI.inherit(BI.Single, {
doRedMark: function (keyword) {
var o = this.options;
o.keyword = keyword;
this.text.element.__textKeywordMarked__(o.text || o.value, keyword, o.py);
},
unRedMark: function () {
var o = this.options;
o.keyword = "";
this.text.element.__textKeywordMarked__(o.text || o.value, "", o.py);
},

Loading…
Cancel
Save