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