mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Set Interfaces widget IPv6 address
Now that get_interfacestatus() is returning us the IPv6 address, and interfaces.widget.php has a div to put it in, actually update the IPv6 address on the widget.
This commit is contained in:
parent
42647435de
commit
085d688987
@ -156,14 +156,16 @@ function updateInterfaces(x){
|
||||
jQuery('#' + details[0] + '-down').css("display","none");
|
||||
jQuery('#' + details[0] + '-block').css("display","none");
|
||||
jQuery('#' + details[0] + '-ip').html(details[2]);
|
||||
jQuery('#' + details[0] + '-media').html(details[3]);
|
||||
jQuery('#' + details[0] + '-ipv6').html(details[3]);
|
||||
jQuery('#' + details[0] + '-media').html(details[4]);
|
||||
break;
|
||||
case "down":
|
||||
jQuery('#' + details[0] + '-down').css("display","inline");
|
||||
jQuery('#' + details[0] + '-up').css("display","none");
|
||||
jQuery('#' + details[0] + '-block').css("display","none");
|
||||
jQuery('#' + details[0] + '-ip').html(details[2]);
|
||||
jQuery('#' + details[0] + '-media').html(details[3]);
|
||||
jQuery('#' + details[0] + '-ipv6').html(details[3]);
|
||||
jQuery('#' + details[0] + '-media').html(details[4]);
|
||||
break;
|
||||
case "block":
|
||||
jQuery('#' + details[0] + '-block').css("display","inline");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user