mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-20 21:33:18 -07:00
Some styling changes, mainly on the user profile page.
Add provider info to IP lookup modal.
This commit is contained in:
parent
bca1032c8b
commit
c7af1c127c
9 changed files with 76 additions and 46 deletions
|
@ -33,7 +33,9 @@
|
|||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer"></div>
|
||||
<div class="modal-footer">
|
||||
<span class="text-muted">Service provided by ip.api.com.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -50,7 +52,7 @@
|
|||
$('#modal_header_ip_address').html("Request failed. Server may be too busy.");
|
||||
},
|
||||
success: function(data) {
|
||||
$('#modal_header_ip_address').html("IP Address: " + ip_address);
|
||||
$('#modal_header_ip_address').html('<i class="fa fa-map-marker"></i> IP Address: ' + ip_address);
|
||||
$('#country').html(data.country);
|
||||
$('#city').html(data.city);
|
||||
$('#region').html(data.regionName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue