Excellent.
I am making one change the to va_spy.js file in the current build as a couple users complained about not wanting the "subscribed threads only" option. (By the way, anyone tested this to make sure my query is right?)
At line 64 in va_spy.js, I added a condition:
Code:
if (document.getElementById("subscribe")) {
if (document.getElementById("subscribe").checked) { querystring = querystring + "&subscribe=1"; }
}
So that the subscribe option does not have to be displayed if you do not want to display it. You can remove the checkbox option from any template and this will prevent a JavaScript error.