1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-04-29 01:42:59 +12:00

Fix improper initial value for suspendTabsUntilReady

This commit is contained in:
Raymond Hill 2020-02-02 08:49:24 -05:00
parent 43cd137fff
commit e3ebfdfba4
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -124,7 +124,7 @@ const rawSettingsDefault = {
'</body></html>'
].join(''),
framePlaceholderBackground: 'default',
suspendTabsUntilReady: false
suspendTabsUntilReady: 'unset'
};
/******************************************************************************/