dailer 5 years ago
parent
commit
419e4faeb9
  1. 4
      dist/2.0/fineui.ie.js
  2. 4
      dist/2.0/fineui.ie.min.js
  3. 4
      dist/2.0/fineui.js
  4. 4
      dist/2.0/fineui.min.js
  5. 4
      dist/bundle.ie.js
  6. 4
      dist/bundle.ie.min.js
  7. 4
      dist/bundle.js
  8. 4
      dist/bundle.min.js
  9. 4
      dist/core.js
  10. 4
      dist/fineui.ie.js
  11. 4
      dist/fineui.ie.min.js
  12. 4
      dist/fineui.js
  13. 4
      dist/fineui.min.js
  14. 4
      dist/fineui_without_jquery_polyfill.js
  15. 4
      dist/utils.js
  16. 4
      dist/utils.min.js
  17. 4
      src/core/alias.js

4
dist/2.0/fineui.ie.js vendored

@ -15919,7 +15919,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&", "&": "&",
"\"": """, "\"": """,
"<": "&lt;", "<": "&lt;",
@ -15928,7 +15928,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

4
dist/2.0/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/2.0/fineui.js vendored

@ -15919,7 +15919,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&amp;", "&": "&amp;",
"\"": "&quot;", "\"": "&quot;",
"<": "&lt;", "<": "&lt;",
@ -15928,7 +15928,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

4
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.ie.js vendored

@ -15919,7 +15919,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&amp;", "&": "&amp;",
"\"": "&quot;", "\"": "&quot;",
"<": "&lt;", "<": "&lt;",
@ -15928,7 +15928,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -15919,7 +15919,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&amp;", "&": "&amp;",
"\"": "&quot;", "\"": "&quot;",
"<": "&lt;", "<": "&lt;",
@ -15928,7 +15928,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/core.js vendored

@ -15919,7 +15919,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&amp;", "&": "&amp;",
"\"": "&quot;", "\"": "&quot;",
"<": "&lt;", "<": "&lt;",
@ -15928,7 +15928,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

4
dist/fineui.ie.js vendored

@ -16164,7 +16164,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&amp;", "&": "&amp;",
"\"": "&quot;", "\"": "&quot;",
"<": "&lt;", "<": "&lt;",
@ -16173,7 +16173,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.js vendored

@ -16164,7 +16164,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&amp;", "&": "&amp;",
"\"": "&quot;", "\"": "&quot;",
"<": "&lt;", "<": "&lt;",
@ -16173,7 +16173,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

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

@ -15665,7 +15665,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&amp;", "&": "&amp;",
"\"": "&quot;", "\"": "&quot;",
"<": "&lt;", "<": "&lt;",
@ -15674,7 +15674,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

4
dist/utils.js vendored

@ -12884,7 +12884,7 @@ if (!_global.BI) {
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&amp;", "&": "&amp;",
"\"": "&quot;", "\"": "&quot;",
"<": "&lt;", "<": "&lt;",
@ -12893,7 +12893,7 @@ if (!_global.BI) {
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

4
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

4
src/core/alias.js

@ -411,7 +411,7 @@
}; };
// replace the html special tags // replace the html special tags
var specialTags = { var SPECIAL_TAGS = {
"&": "&amp;", "&": "&amp;",
"\"": "&quot;", "\"": "&quot;",
"<": "&lt;", "<": "&lt;",
@ -420,7 +420,7 @@
}; };
BI.htmlEncode = function (text) { BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) { return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return specialTags[v] ? specialTags[v] : "&nbsp;"; return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
}); });
}; };
// html decode // html decode

Loading…
Cancel
Save