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:
@@ -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]",
|
||||
|
||||
Reference in New Issue
Block a user