1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-25 17:01:24 +02:00

use lambda notation for setter and getter definitions where appropriate

This commit is contained in:
Doug Kearns
2008-09-24 06:03:42 +00:00
parent 804b1fd62f
commit f478f57c57
6 changed files with 16 additions and 21 deletions
+2 -2
View File
@@ -560,8 +560,8 @@ const liberator = (function () //{{{
return {
get mode() { return liberator.modes.main; },
set mode(value) { liberator.modes.main = value; },
get mode() liberator.modes.main,
set mode(value) liberator.modes.main = value,
// Global constants
CURRENT_TAB: 1,