File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -153,8 +153,7 @@ class ZenSplitViewLinkDrop {
153
153
const URL_TYPES = [ 'text/uri-list' , 'text/x-moz-url' , 'text/plain' ] ;
154
154
155
155
let fixupFlags =
156
- Ci . nsIURIFixup . FIXUP_FLAG_FIX_SCHEME_TYPOS |
157
- Ci . nsIURIFixup . FIXUP_FLAG_ALLOW_KEYWORD_LOOKUP ;
156
+ Ci . nsIURIFixup . FIXUP_FLAG_FIX_SCHEME_TYPOS | Ci . nsIURIFixup . FIXUP_FLAG_ALLOW_KEYWORD_LOOKUP ;
158
157
159
158
const matchedType = URL_TYPES . find ( ( type ) => {
160
159
const raw = dt . getData ( type ) ;
@@ -300,7 +299,9 @@ class ZenSplitViewLinkDrop {
300
299
const group = this . #zenViewSplitter. _data [ groupIndex ] ;
301
300
302
301
if ( group . tabs . length >= this . #zenViewSplitter. MAX_TABS ) {
303
- console . warn ( `Cannot add tab to split, MAX_TABS (${ this . #zenViewSplitter. MAX_TABS } ) reached.` ) ;
302
+ console . warn (
303
+ `Cannot add tab to split, MAX_TABS (${ this . #zenViewSplitter. MAX_TABS } ) reached.`
304
+ ) ;
304
305
return ;
305
306
}
306
307
You can’t perform that action at this time.
0 commit comments