diff options
Diffstat (limited to 'crocoite/data')
-rw-r--r-- | crocoite/data/click.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crocoite/data/click.js b/crocoite/data/click.js index f2c59f6..b3e425b 100644 --- a/crocoite/data/click.js +++ b/crocoite/data/click.js @@ -81,6 +81,12 @@ const sites = Object.freeze ([ /* more posts */ {s: 'post-list a.post-list__load-more', flags: selectorFlag.multi}, ], + }, { + hostname: /^(www\.)?github\.com$/i, + selector: [ + /* show hidden issue items, see https://github.com/dominictarr/event-stream/issues/116 */ + {s: 'div#discussion_bucket form.ajax-pagination-form button.ajax-pagination-btn', flags: selectorFlag.none}, + ], } ]); |