guy 7 years ago
parent
commit
83772cd1c2
  1. 5
      bi/core.js
  2. 5
      dist/bundle.js
  3. 3
      dist/config.js
  4. 5
      dist/core.js
  5. 2
      dist/index.html
  6. 3
      src/core/proto/date.js

5
bi/core.js

@ -20623,7 +20623,9 @@ BI.Cache = {
}
document.cookie = cookieString;
}
};// full day names
};$(function () {
//牵扯到国际化这些常量在页面加载后再生效
// full day names
Date._DN = [BI.i18nText("BI-Basic_Sunday"),
BI.i18nText("BI-Basic_Monday"),
BI.i18nText("BI-Basic_Tuesday"),
@ -20682,6 +20684,7 @@ Date._QN = ["", BI.i18nText("BI-Quarter_1"),
/** Adds the number of days array to the Date object. */
Date._MD = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
})
/** Constants used for time computations */
Date.SECOND = 1000 /* milliseconds */;

5
dist/bundle.js vendored

@ -20674,7 +20674,9 @@ BI.Cache = {
}
document.cookie = cookieString;
}
};// full day names
};$(function () {
//牵扯到国际化这些常量在页面加载后再生效
// full day names
Date._DN = [BI.i18nText("BI-Basic_Sunday"),
BI.i18nText("BI-Basic_Monday"),
BI.i18nText("BI-Basic_Tuesday"),
@ -20733,6 +20735,7 @@ Date._QN = ["", BI.i18nText("BI-Quarter_1"),
/** Adds the number of days array to the Date object. */
Date._MD = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
})
/** Constants used for time computations */
Date.SECOND = 1000 /* milliseconds */;

3
dist/config.js vendored

@ -2,9 +2,6 @@ Demo = {
version: 1.0
};
if (!window.BI) {
window.BI = {};
}
BI.servletURL = "";
BI.resourceURL = "resource/";
BI.i18n = {

5
dist/core.js vendored

@ -20623,7 +20623,9 @@ BI.Cache = {
}
document.cookie = cookieString;
}
};// full day names
};$(function () {
//牵扯到国际化这些常量在页面加载后再生效
// full day names
Date._DN = [BI.i18nText("BI-Basic_Sunday"),
BI.i18nText("BI-Basic_Monday"),
BI.i18nText("BI-Basic_Tuesday"),
@ -20682,6 +20684,7 @@ Date._QN = ["", BI.i18nText("BI-Quarter_1"),
/** Adds the number of days array to the Date object. */
Date._MD = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
})
/** Constants used for time computations */
Date.SECOND = 1000 /* milliseconds */;

2
dist/index.html vendored

@ -11,7 +11,6 @@
<link rel="stylesheet" type="text/css" href="demo.css" />
<link rel="stylesheet" type="text/css" href="sliders.css" />
<script src="config.js"></script>
<script src="polyfill.js"></script>
<script src="core.js"></script>
<script src="fix/fix-1.0.js"></script>
@ -22,6 +21,7 @@
<script src="case.js"></script>
<script src="widget.js"></script>
<script src="sliders.js"></script>
<script src="config.js"></script>
<!--图表-->
<!--<script src="vancharts-all.js"></script>-->
<!--<script src="biconst.js"></script>-->

3
src/core/proto/date.js

@ -1,3 +1,5 @@
$(function () {
//牵扯到国际化这些常量在页面加载后再生效
// full day names
Date._DN = [BI.i18nText("BI-Basic_Sunday"),
BI.i18nText("BI-Basic_Monday"),
@ -57,6 +59,7 @@ Date._QN = ["", BI.i18nText("BI-Quarter_1"),
/** Adds the number of days array to the Date object. */
Date._MD = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
})
/** Constants used for time computations */
Date.SECOND = 1000 /* milliseconds */;

Loading…
Cancel
Save