File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,19 +24,23 @@ const Vomnibar = {
2424 } ) ;
2525 } ,
2626
27- activateBookmarks ( sourceFrameId ) {
28- this . open ( sourceFrameId , {
29- completer : "bookmarks" ,
30- selectFirst : true ,
31- } ) ;
27+ activateBookmarks ( sourceFrameId , registryEntry ) {
28+ let options = Object . assign ( { } , registryEntry . options ,
29+ {
30+ completer : "bookmarks" ,
31+ selectFirst : true ,
32+ } ) ;
33+ this . open ( sourceFrameId , options ) ;
3234 } ,
3335
34- activateBookmarksInNewTab ( sourceFrameId ) {
35- this . open ( sourceFrameId , {
36- completer : "bookmarks" ,
37- selectFirst : true ,
38- newTab : true ,
39- } ) ;
36+ activateBookmarksInNewTab ( sourceFrameId , registryEntry ) {
37+ let options = Object . assign ( { } , registryEntry . options ,
38+ {
39+ completer : "bookmarks" ,
40+ selectFirst : true ,
41+ newTab : true ,
42+ } ) ;
43+ this . open ( sourceFrameId , options ) ;
4044 } ,
4145
4246 activateEditUrl ( sourceFrameId ) {
You can’t perform that action at this time.
0 commit comments