1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 22:47:59 +01:00

Fix wheel scrolling in the MOW.

--HG--
extra : transplant_source : %BD%8C6%3DN%BB%CF%BB%9C.%1Cc%D7vpV%A2v%C3%06
This commit is contained in:
Kris Maglione
2011-01-24 09:21:31 -05:00
parent 08104aee80
commit 2df1de7ad1
5 changed files with 12 additions and 8 deletions

View File

@@ -83,14 +83,14 @@ var actions = {
enable: {
name: "exte[nable]",
description: "Enable an extension",
action: function (addon) addon.userDisabled = false,
action: function (addon) { addon.userDisabled = false; },
filter: function ({ item }) item.userDisabled,
perm: "enable"
},
disable: {
name: "extd[isable]",
description: "Disable an extension",
action: function (addon) addon.userDisabled = true,
action: function (addon) { addon.userDisabled = true; },
filter: function ({ item }) !item.userDisabled,
perm: "disable"
},
@@ -125,7 +125,7 @@ var actions = {
toggle: {
name: "extt[oggle]",
description: "Toggle an extension's enabled status",
action: function (addon) addon.userDisabled = !addon.userDisabled
action: function (addon) { addon.userDisabled = !addon.userDisabled; }
},
update: {
name: "extu[pdate]",