windy 6 years ago
parent
commit
c1fadcd504
  1. 4
      dist/bundle.ie.js
  2. 4
      dist/bundle.ie.min.js
  3. 4
      dist/bundle.js
  4. 4
      dist/bundle.min.js
  5. 4
      dist/core.js
  6. 4
      dist/fineui.ie.js
  7. 4
      dist/fineui.ie.min.js
  8. 4
      dist/fineui.js
  9. 4
      dist/fineui.min.js
  10. 4
      dist/fineui_without_jquery_polyfill.js
  11. 4
      dist/utils.js
  12. 4
      dist/utils.min.js
  13. 4
      src/core/alias.js

4
dist/bundle.ie.js vendored

@ -15903,7 +15903,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
// replace the html special tags
BI.htmlEncode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&|\"|<|>|\s/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
switch (v) {
case "&":
return "&amp;";
@ -15921,7 +15921,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
};
// html decode
BI.htmlDecode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&amp;|&quot;|&lt;|&gt;|&nbsp;/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&amp;|&quot;|&lt;|&gt;|&nbsp;", function (v) {
switch (v) {
case "&amp;":
return "&";

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -15903,7 +15903,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
// replace the html special tags
BI.htmlEncode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&|\"|<|>|\s/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
switch (v) {
case "&":
return "&amp;";
@ -15921,7 +15921,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
};
// html decode
BI.htmlDecode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&amp;|&quot;|&lt;|&gt;|&nbsp;/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&amp;|&quot;|&lt;|&gt;|&nbsp;", function (v) {
switch (v) {
case "&amp;":
return "&";

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/core.js vendored

@ -15903,7 +15903,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
// replace the html special tags
BI.htmlEncode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&|\"|<|>|\s/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
switch (v) {
case "&":
return "&amp;";
@ -15921,7 +15921,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
};
// html decode
BI.htmlDecode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&amp;|&quot;|&lt;|&gt;|&nbsp;/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&amp;|&quot;|&lt;|&gt;|&nbsp;", function (v) {
switch (v) {
case "&amp;":
return "&";

4
dist/fineui.ie.js vendored

@ -16148,7 +16148,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
// replace the html special tags
BI.htmlEncode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&|\"|<|>|\s/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
switch (v) {
case "&":
return "&amp;";
@ -16166,7 +16166,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
};
// html decode
BI.htmlDecode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&amp;|&quot;|&lt;|&gt;|&nbsp;/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&amp;|&quot;|&lt;|&gt;|&nbsp;", function (v) {
switch (v) {
case "&amp;":
return "&";

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.js vendored

@ -16148,7 +16148,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
// replace the html special tags
BI.htmlEncode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&|\"|<|>|\s/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
switch (v) {
case "&":
return "&amp;";
@ -16166,7 +16166,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
};
// html decode
BI.htmlDecode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&amp;|&quot;|&lt;|&gt;|&nbsp;/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&amp;|&quot;|&lt;|&gt;|&nbsp;", function (v) {
switch (v) {
case "&amp;":
return "&";

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui_without_jquery_polyfill.js vendored

@ -15649,7 +15649,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
// replace the html special tags
BI.htmlEncode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&|\"|<|>|\s/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
switch (v) {
case "&":
return "&amp;";
@ -15667,7 +15667,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
};
// html decode
BI.htmlDecode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&amp;|&quot;|&lt;|&gt;|&nbsp;/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&amp;|&quot;|&lt;|&gt;|&nbsp;", function (v) {
switch (v) {
case "&amp;":
return "&";

4
dist/utils.js vendored

@ -12908,7 +12908,7 @@ if (!_global.BI) {
// replace the html special tags
BI.htmlEncode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&|\"|<|>|\s/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
switch (v) {
case "&":
return "&amp;";
@ -12926,7 +12926,7 @@ if (!_global.BI) {
};
// html decode
BI.htmlDecode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&amp;|&quot;|&lt;|&gt;|&nbsp;/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&amp;|&quot;|&lt;|&gt;|&nbsp;", function (v) {
switch (v) {
case "&amp;":
return "&";

4
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

4
src/core/alias.js

@ -412,7 +412,7 @@
// replace the html special tags
BI.htmlEncode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&|\"|<|>|\s/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
switch (v) {
case "&":
return "&amp;";
@ -430,7 +430,7 @@
};
// html decode
BI.htmlDecode = function (text) {
return text === null ? "" : BI.replaceAll(text + "", /&amp;|&quot;|&lt;|&gt;|&nbsp;/, function (v) {
return text === null ? "" : BI.replaceAll(text + "", "&amp;|&quot;|&lt;|&gt;|&nbsp;", function (v) {
switch (v) {
case "&amp;":
return "&";

Loading…
Cancel
Save