guy 7 years ago
parent
commit
078a6b6a08
  1. 7
      bi/core.js
  2. 4
      demo/version.js
  3. 7
      docs/core.js
  4. 4
      docs/demo.js
  5. 7
      src/core/proto/jquery.js

7
bi/core.js

@ -6549,6 +6549,7 @@ Function.prototype.after = function (func) {
if (jQuery) {
(function ($) {
// richer:容器在其各个边缘留出的空间
if (!$.fn.insets) {
$.fn.insets = function () {
var p = this.padding(),
b = this.border();
@ -6559,8 +6560,10 @@ if (jQuery) {
'right': p.right + b.right + b.left
};
};
}
// richer:获取 && 设置jQuery元素的边界
if (!$.fn.bounds) {
$.fn.bounds = function (value) {
var tmp = {hasIgnoredBounds: true};
@ -6598,8 +6601,10 @@ if (jQuery) {
};
}
};
}
})(jQuery);
};if (!Number.prototype.toFixed || (0.00008).toFixed(3) !== '0.000' ||
}
;if (!Number.prototype.toFixed || (0.00008).toFixed(3) !== '0.000' ||
(0.9).toFixed(0) === '0' || (1.255).toFixed(2) !== '1.25' ||
(1000000000000000128).toFixed(0) !== "1000000000000000128") {
(function () {

4
demo/version.js

@ -6,6 +6,6 @@ BI.i18n = {
"BI-Basic_OK": "确定"
};
BI.servletURL = "docs/";
BI.resourceURL = "docs/resource/";
BI.servletURL = "";
BI.resourceURL = "resource/";
BI.i18n = {};

7
docs/core.js

@ -24083,6 +24083,7 @@ Function.prototype.after = function (func) {
if (jQuery) {
(function ($) {
// richer:容器在其各个边缘留出的空间
if (!$.fn.insets) {
$.fn.insets = function () {
var p = this.padding(),
b = this.border();
@ -24093,8 +24094,10 @@ if (jQuery) {
'right': p.right + b.right + b.left
};
};
}
// richer:获取 && 设置jQuery元素的边界
if (!$.fn.bounds) {
$.fn.bounds = function (value) {
var tmp = {hasIgnoredBounds: true};
@ -24132,8 +24135,10 @@ if (jQuery) {
};
}
};
}
})(jQuery);
};if (!Number.prototype.toFixed || (0.00008).toFixed(3) !== '0.000' ||
}
;if (!Number.prototype.toFixed || (0.00008).toFixed(3) !== '0.000' ||
(0.9).toFixed(0) === '0' || (1.255).toFixed(2) !== '1.25' ||
(1000000000000000128).toFixed(0) !== "1000000000000000128") {
(function () {

4
docs/demo.js

@ -6,8 +6,8 @@ BI.i18n = {
"BI-Basic_OK": "确定"
};
BI.servletURL = "docs/";
BI.resourceURL = "docs/resource/";
BI.servletURL = "";
BI.resourceURL = "resource/";
BI.i18n = {};$(function () {
var ref;
BI.createWidget({

7
src/core/proto/jquery.js vendored

@ -8,6 +8,7 @@
if (jQuery) {
(function ($) {
// richer:容器在其各个边缘留出的空间
if (!$.fn.insets) {
$.fn.insets = function () {
var p = this.padding(),
b = this.border();
@ -18,8 +19,10 @@ if (jQuery) {
'right': p.right + b.right + b.left
};
};
}
// richer:获取 && 设置jQuery元素的边界
if (!$.fn.bounds) {
$.fn.bounds = function (value) {
var tmp = {hasIgnoredBounds: true};
@ -57,5 +60,7 @@ if (jQuery) {
};
}
};
}
})(jQuery);
};
}
;
Loading…
Cancel
Save