]>
git.rmz.io Git - dotfiles.git/blob - dwb/userscripts/startup-noautoreload.js
c8dfc246c9ed2c60aa184fab23fd01bb6743265f
3 // Prevents previously-opened tabs from reloading all at once after a restart.
5 execute("set load-on-focus true");
7 var sigId
= Signal
.connect("navigation", function(wv
) {
8 if (wv
== tabs
.current
)
10 execute("set load-on-focus false");
11 Signal
.disconnect(sigId
);