@@ -4148,11 +4148,11 @@ const setImgScale = val => {
41484148 setOption(draftOption => {
41494149 val = helper.clamp(0.1, val, 3);
41504150
4151- // 如果当前最小图片宽度都大于视窗宽度 ,并且这次操作是在调小缩放值
4151+ // 如果当前最小图片宽度大于视窗宽度 ,并且这次操作是在调小缩放值
41524152 // 那就将这次操作改为:将缩放值修改为只要缩小一点就会立刻让图片变小的极限值
41534153 // 避免用户需要多次调小缩放值才能看到效果的情况
41544154 // https://github.com/hymbz/ComicReadScript/issues/285
4155- if (minImgWidth() <= store.rootSize.width && val < draftOption.scrollMode.imgScale) {
4155+ if (minImgWidth() > store.rootSize.width && val < draftOption.scrollMode.imgScale) {
41564156 const maxImgScale = store.rootSize.width / minImgWidth();
41574157 if (val > maxImgScale) val = maxImgScale;
41584158 }
@@ -13502,7 +13502,7 @@ web.delegateEvents(["click"]);
1350213502 const resizeObserver = new ResizeObserver(() => {
1350313503 // 只在超出正常高度时才使用 css 限制,避免和其他脚本(如:EhAria2下载助手)冲突
1350413504 Reflect.deleteProperty(sidebarDom.dataset, 'long');
13505- const lastNode = helper.querySelector('#gd5 p:last-child ');
13505+ const lastNode = helper.querySelector('#gd5 p:last-of-type ');
1350613506 if (lastNode.offsetTop + lastNode.offsetHeight > 352) sidebarDom.dataset.long = '';
1350713507 });
1350813508 resizeObserver.observe(sidebarDom);
@@ -14916,7 +14916,7 @@ const main = require('main');
1491614916
1491714917 // #[NoyAcg](https://noy1.top)
1491814918 // test: https://noy1.top/#/read/13349
14919-
14919+
1492014920 case 'noy1.top':
1492114921 {
1492214922 options = {
@@ -15270,9 +15270,9 @@ const main = require('main');
1527015270 {
1527115271 // #[Tachidesk](https://github.com/Suwayomi/Tachidesk-Sorayomi)
1527215272 // #[LANraragi](https://github.com/Difegue/LANraragi)
15273+ const Manga = require('components/Manga');
1527315274const helper = require('helper');
1527415275const request = require('request');
15275- const Manga = require('components/Manga');
1527615276
1527715277if (document.querySelector(`head > meta[content="A manga reader that runs tachiyomi's extensions"]`)) {
1527815278 const jump = (mangaId, chapterId) => {
0 commit comments