mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-08-02 21:09:32 +08:00
25 lines
896 B
HTML
25 lines
896 B
HTML
<script type="text/javascript">
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
setTimeout(updateElements, 200);
|
|
function updateElements() {
|
|
//修正上移、下移按钮名称
|
|
document.querySelectorAll("input.btn.cbi-button.cbi-button-up").forEach(function(btn) {
|
|
btn.value = "<%:Move up%>";
|
|
});
|
|
document.querySelectorAll("input.btn.cbi-button.cbi-button-down").forEach(function(btn) {
|
|
btn.value = "<%:Move down%>";
|
|
});
|
|
//删除控件和说明之间的多余换行
|
|
document.querySelectorAll("div.cbi-value-description").forEach(function(descDiv) {
|
|
var prev = descDiv.previousSibling;
|
|
while (prev && prev.nodeType === Node.TEXT_NODE && prev.textContent.trim() === "") {
|
|
prev = prev.previousSibling;
|
|
}
|
|
if (prev && prev.nodeType === Node.ELEMENT_NODE && prev.tagName === "BR") {
|
|
prev.remove();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
</script>
|