danoniplus 34.7.14 → 34.7.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/danoni_main.js +7 -7
- package/package.json +1 -1
package/js/danoni_main.js
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
*
|
|
5
5
|
* Source by tickle
|
|
6
6
|
* Created : 2018/10/08
|
|
7
|
-
* Revised : 2025/01
|
|
7
|
+
* Revised : 2025/02/01
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 34.7.
|
|
12
|
-
const g_revisedDate = `2025/01
|
|
11
|
+
const g_version = `Ver 34.7.15`;
|
|
12
|
+
const g_revisedDate = `2025/02/01`;
|
|
13
13
|
|
|
14
14
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
15
15
|
let g_localVersion = ``;
|
|
@@ -8828,8 +8828,8 @@ const mainInit = _ => {
|
|
|
8828
8828
|
const filterCss = g_stateObj.filterLock === C_FLG_OFF ? g_cssObj.life_Failed : g_cssObj.life_Cleared;
|
|
8829
8829
|
[`filterBar0`, `filterBar1`, `borderBar0`, `borderBar1`].forEach(obj =>
|
|
8830
8830
|
mainSprite.appendChild(createColorObject2(obj, g_lblPosObj.filterBar, filterCss)));
|
|
8831
|
-
borderBar0.style.top = wUnit(g_posObj.stepDiffY +
|
|
8832
|
-
borderBar1.style.top = wUnit(g_posObj.stepDiffY + g_posObj.arrowHeight -
|
|
8831
|
+
borderBar0.style.top = wUnit(g_posObj.stepDiffY + g_workObj.hitPosition);
|
|
8832
|
+
borderBar1.style.top = wUnit(g_posObj.stepDiffY + g_posObj.arrowHeight - g_workObj.hitPosition);
|
|
8833
8833
|
|
|
8834
8834
|
if (g_appearanceRanges.includes(g_stateObj.appearance)) {
|
|
8835
8835
|
mainSprite.appendChild(createDivCss2Label(`filterView`, ``, g_lblPosObj.filterView));
|
|
@@ -9986,8 +9986,8 @@ const changeAppearanceFilter = (_appearance, _num = 10) => {
|
|
|
9986
9986
|
$id(`arrowSprite${topNum}`).clipPath = topShape;
|
|
9987
9987
|
$id(`arrowSprite${bottomNum}`).clipPath = bottomShape;
|
|
9988
9988
|
|
|
9989
|
-
$id(`filterBar0`).top = wUnit(g_posObj.arrowHeight * _num / 100
|
|
9990
|
-
$id(`filterBar1`).top = wUnit(g_posObj.arrowHeight * (100 - _num) / 100
|
|
9989
|
+
$id(`filterBar0`).top = wUnit(g_posObj.arrowHeight * _num / 100 - g_workObj.hitPosition);
|
|
9990
|
+
$id(`filterBar1`).top = wUnit(g_posObj.arrowHeight * (100 - _num) / 100 + g_workObj.hitPosition);
|
|
9991
9991
|
|
|
9992
9992
|
if (g_appearanceRanges.includes(_appearance)) {
|
|
9993
9993
|
$id(`filterView`).top =
|