Skip to content

Commit

Permalink
fix: 修复 root div 的 id 在部分页面下调整为 __next,导致找不到工具栏的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocrosoft committed Sep 12, 2024
1 parent 1cb99d1 commit 6d288bd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pixiv previewer.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Pixiv Previewer(Dev)
// @namespace https://github.com/Ocrosoft/PixivPreviewer
// @version 3.7.23
// @version 3.7.24
// @description Display preview images (support single image, multiple images, moving images); Download animation(.zip); Sorting the search page by favorite count(and display it). Updated for the latest search page.
// @description:zh-CN 显示预览图(支持单图,多图,动图);动图压缩包下载;搜索页按热门度(收藏数)排序并显示收藏数,适配11月更新。
// @description:ja プレビュー画像の表示(単一画像、複数画像、動画のサポート); アニメーションのダウンロード(.zip); お気に入りの数で検索ページをソートします(そして表示します)。 最新の検索ページ用に更新されました。
Expand Down Expand Up @@ -1036,7 +1036,10 @@ let ControlElementsAttributesSample = {
};

function findToolbarCommon() {
return $('#root').find('ul:last').get(0);
let rootToolbar = $('#root').find('ul:last').get(0);
if (rootToolbar) return rootToolbar;
let nextToolbar = $('#__next').find('ul:last').get(0);
return nextToolbar;
}
function findToolbarOld() {
return $('._toolmenu').get(0);
Expand Down

0 comments on commit 6d288bd

Please sign in to comment.