Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4eae02faed | |||
| d47ca98fb3 |
@@ -75,7 +75,13 @@
|
|||||||
trigger.options[i].disabled = isTarget;
|
trigger.options[i].disabled = isTarget;
|
||||||
}
|
}
|
||||||
if (trigger.value === target.value) { trigger.value = "any"; }
|
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
|
// Move-mode makes copies moot, so grey out "Link copies to the template" while it is checked
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ class Plugin extends Base
|
|||||||
|
|
||||||
public function getPluginVersion()
|
public function getPluginVersion()
|
||||||
{
|
{
|
||||||
return '1.9.1';
|
return '1.9.2';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getPluginHomepage()
|
public function getPluginHomepage()
|
||||||
|
|||||||
Reference in New Issue
Block a user