0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GithubのプルリクエストでLoad diffを「ちょっとだけ」開きたいとき

Posted at

大量のファイル修正を伴うプルリクエスト(PR)があったとき、途中から表示が Load diff となり、クリックしないと中身が見えなくなることがあります。

qiita.png
こんな感じ。

webで調べると、Load diff表示部分を全部クリックして開いちゃう、みたいなものは出てきますが、

document.querySelectorAll('.load-diff-button').forEach(node => node.click())

全部開くとさらに重くなるし、時間もかかるので、ちょっとだけ開きたいというとき用のものを作りました。 i < 10 のところを書き換えて開く数を設定する感じです。

document.querySelectorAll('.load-diff-button').forEach((node,i) => { if (i < 10) {node.click()}})

(そもそもそんな重たいPRを作るなよ、って話はホントそのとおりです)

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?