1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-15 20:15:46 +01:00

Do away with now unnecessary service variables.

This commit is contained in:
Kris Maglione
2010-12-01 22:17:19 -05:00
parent 5d51fd491a
commit 0748369c68
3 changed files with 31 additions and 36 deletions

View File

@@ -312,8 +312,7 @@ const Config = Module("config", ConfigBase, {
"boolean", true,
{
setter: function (value) {
const ioService = services.io;
if (ioService.offline == value)
if (services.io.offline == value)
BrowserOffline.toggleOfflineStatus();
return value;
},