mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-11 07:05:47 +01:00
Get rid of absurd strict JS warnings.
This commit is contained in:
@@ -173,8 +173,10 @@ const StatusLine = Module("statusline", {
|
||||
*/
|
||||
updateTabCount: function updateTabCount(delayed) {
|
||||
if (liberator.has("tabs")) {
|
||||
if (delayed)
|
||||
return void this.setTimeout(function () this.updateTabCount(false), 0);
|
||||
if (delayed) {
|
||||
this.setTimeout(function () this.updateTabCount(false), 0);
|
||||
return;
|
||||
}
|
||||
|
||||
// update the ordinal which is used for numbered tabs
|
||||
if (options.get("guioptions").has("n", "N"))
|
||||
|
||||
Reference in New Issue
Block a user