Skip to content

Commit 63ff161

Browse files
committed
Diff-file-toggle: Add meta urls
1 parent 2122b9f commit 63ff161

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

github-diff-file-toggle.user.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==UserScript==
22
// @name GitHub Diff File Toggle
3-
// @version 0.1.1
3+
// @version 0.1.2
44
// @description A userscript that adds global diff file toggles
55
// @license MIT
66
// @author Rob Garrison
@@ -11,6 +11,10 @@
1111
// @require https://greasyfork.org/scripts/28721-mutations/code/mutations.js?version=882023
1212
// @require https://greasyfork.org/scripts/398877-utils-js/code/utilsjs.js?version=785415
1313
// @icon https://github.githubassets.com/pinned-octocat.svg
14+
// @updateURL https://raw.githubusercontent.com/Mottie/Github-userscripts/master/github-diff-file-toggle.user.js
15+
// @downloadURL https://raw.githubusercontent.com/Mottie/Github-userscripts/master/github-diff-file-toggle.user.js
16+
// @supportURL https://github.com/Mottie/GitHub-userscripts/issues
17+
1418
// ==/UserScript==
1519
/* global $ $$ on debounce make */
1620
(() => {
@@ -63,7 +67,7 @@
6367

6468
const handleChange = event => {
6569
const { target, altKey, shiftKey } = event;
66-
const anyModifier = altKey || shiftKey;
70+
const anyModifier = altKey || shiftKey;
6771
if (!busy && anyModifier && target.matches(".js-reviewed-checkbox")) {
6872
busy = true;
6973
toggle(target, target.checked);

0 commit comments

Comments
 (0)