* Finish task #54470.

This commit is contained in:
zhouxudong
2022-05-20 05:59:51 +00:00
parent 2b523a1458
commit 6ee6f5b996
+16
View File
@@ -108,4 +108,20 @@
</div>
</div>
</div>
<script>
$('#repoForm').bind('DOMNodeInserted', function(e)
{
if ( $("#clientLabel").length > 0 ) {
if($("#client").val() !== '')
{
$("#clientLabel").css('color','blue');
$("#client").attr('style', 'border-color: blue !important;');
}
else
{
$("#client").removeAttr("style");
}
}
});
</script>
<?php include '../../common/view/footer.html.php'; ?>