mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-24 13:33:34 +08:00
10 lines
287 B
JavaScript
10 lines
287 B
JavaScript
jQuery("#publishActions").bind("change", function () {
|
|
var value = jQuery(this).val(),
|
|
target = jQuery("#TargetContainerId");
|
|
if (value === "MoveToList") {
|
|
target.css("display", "inline");
|
|
}
|
|
else {
|
|
target.css("display", "none");
|
|
}
|
|
}); |