2 Commits

3 changed files with 9 additions and 3 deletions

View File

@@ -75,7 +75,13 @@
trigger.options[i].disabled = isTarget;
}
if (trigger.value === target.value) { trigger.value = "any"; }
if (invert) { invert.disabled = (trigger.value === "any"); }
if (invert) {
var invertDisabled = (trigger.value === "any");
invert.disabled = invertDisabled;
var invertLabel = invert.closest("label");
if (invertLabel) { invertLabel.style.opacity = invertDisabled ? "0.5" : ""; }
}
}
// Move-mode makes copies moot, so grey out "Link copies to the template" while it is checked

View File

@@ -62,7 +62,7 @@ class Plugin extends Base
public function getPluginVersion()
{
return '1.9.1';
return '1.9.2';
}
public function getPluginHomepage()

View File

@@ -1 +1 @@
RecoReco v1.9.1
RecoReco v1.9.2