Relocate and rename option, make option restore after page refresh.

This commit is contained in:
Lewis Crichton 2020-07-15 13:54:58 +01:00 committed by Calvin Montgomery
parent d4f75146c7
commit c148c991cd
2 changed files with 4 additions and 6 deletions

View file

@ -144,7 +144,7 @@ function formatUserlistItem(div) {
$("<strong/>").text(data.name).appendTo(profile);
var meta = div.data("meta") || {};
if (meta.ip && !USEROPTS.disable_ip_tooltip) {
if (meta.ip && USEROPTS.show_ip_in_tooltip) {
$("<br/>").appendTo(profile);
$("<em/>").text(meta.ip).appendTo(profile);
}
@ -655,6 +655,7 @@ function showUserOptions() {
$("#us-modflair").prop("checked", USEROPTS.modhat);
$("#us-shadowchat").prop("checked", USEROPTS.show_shadowchat);
$("#us-show-ip-in-tooltip").prop("checked", USEROPTS.show_ip_in_tooltip);
formatScriptAccessPrefs();
@ -668,7 +669,7 @@ function saveUserOptions() {
USEROPTS.layout = $("#us-layout").val();
USEROPTS.ignore_channelcss = $("#us-no-channelcss").prop("checked");
USEROPTS.ignore_channeljs = $("#us-no-channeljs").prop("checked");
USEROPTS.disable_ip_tooltip = $("#us-no-ip-on-hover").prop("checked");
USEROPTS.show_ip_in_tooltip = $("#us-show-ip-in-tooltip").prop("checked");
USEROPTS.synch = $("#us-synch").prop("checked");
USEROPTS.sync_accuracy = parseFloat($("#us-synch-accuracy").val()) || 2;