You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this great library. Setting it up was extremely simple and it works like a charm. However, I ran into a problem while trying to set updateTitle to false:
The updateTitle config value is set via updateTitle = cfg.updateTitle || updateTitle;. This way the updateTitle config value cannot be set to false, since it then evaluates to its previous value (true). The corresponding line should be replaced via updateTitle = (cfg.updateTitle !== undefined) ? cfg.updateTitle : updateTitle;.
The text was updated successfully, but these errors were encountered:
Thanks for this great library. Setting it up was extremely simple and it works like a charm. However, I ran into a problem while trying to set
updateTitle
tofalse
:The
updateTitle
config value is set viaupdateTitle = cfg.updateTitle || updateTitle;
. This way theupdateTitle
config value cannot be set tofalse
, since it then evaluates to its previous value (true
). The corresponding line should be replaced viaupdateTitle = (cfg.updateTitle !== undefined) ? cfg.updateTitle : updateTitle;
.The text was updated successfully, but these errors were encountered: