File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ const Events = Module("events", {
24
24
25
25
this . sessionListeners = [ ] ;
26
26
27
- this . _macros = storage . newMap ( "macros" , { store : true , privateData : true } ) ;
27
+ this . _macros = storage . newMap ( "macros" , { store : true } ) ;
28
28
29
29
// NOTE: the order of ["Esc", "Escape"] or ["Escape", "Esc"]
30
30
// matters, so use that string as the first item, that you
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ const Marks = Module("marks", {
11
11
requires : [ "config" , "storage" ] ,
12
12
13
13
init : function init ( ) {
14
- this . _localMarks = storage . newMap ( "local-marks" , { store : true , privateData : true } ) ;
15
- this . _urlMarks = storage . newMap ( "url-marks" , { store : false , privateData : true } ) ;
14
+ this . _localMarks = storage . newMap ( "local-marks" , { store : true } ) ;
15
+ this . _urlMarks = storage . newMap ( "url-marks" , { store : false } ) ;
16
16
17
17
this . _pendingJumps = [ ] ;
18
18
} ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const QuickMarks = Module("quickmarks", {
12
12
requires : [ "config" , "storage" ] ,
13
13
14
14
init : function ( ) {
15
- this . _qmarks = storage . newMap ( "quickmarks" , { store : true , privateData : true } ) ;
15
+ this . _qmarks = storage . newMap ( "quickmarks" , { store : true } ) ;
16
16
} ,
17
17
18
18
/**
You can’t perform that action at this time.
0 commit comments