mirror of https://github.com/calzoneman/sync.git
Relocate and rename option, make option restore after page refresh.
This commit is contained in:
parent
d4f75146c7
commit
c148c991cd
|
@ -100,10 +100,6 @@ mixin us-chat
|
||||||
+rcheckbox("us-sort-rank", "Sort userlist by rank")
|
+rcheckbox("us-sort-rank", "Sort userlist by rank")
|
||||||
+rcheckbox("us-sort-afk", "Sort AFKers to bottom")
|
+rcheckbox("us-sort-afk", "Sort AFKers to bottom")
|
||||||
.col-sm-4
|
.col-sm-4
|
||||||
.col-sm-8
|
|
||||||
p.text-info The following option only applies if you have permission to see IP addresses in the first place.
|
|
||||||
+rcheckbox("us-no-ip-on-hover", "Disable revealing user IP addresses in profile tooltip")
|
|
||||||
.col-sm-4
|
|
||||||
.col-sm-8
|
.col-sm-8
|
||||||
p.text-info The following 3 options apply to how and when you will be notified if a new chat message is received while CyTube is not the active window.
|
p.text-info The following 3 options apply to how and when you will be notified if a new chat message is received while CyTube is not the active window.
|
||||||
.form-group
|
.form-group
|
||||||
|
@ -143,3 +139,4 @@ mixin us-mod
|
||||||
form.form-horizontal(action="javascript:void(0)")
|
form.form-horizontal(action="javascript:void(0)")
|
||||||
+rcheckbox("us-modflair", "Show name color")
|
+rcheckbox("us-modflair", "Show name color")
|
||||||
+rcheckbox("us-shadowchat", "Show shadowmuted messages")
|
+rcheckbox("us-shadowchat", "Show shadowmuted messages")
|
||||||
|
+rcheckbox("us-show-ip-in-tooltip", "Show IP addresses in profile tooltip")
|
|
@ -144,7 +144,7 @@ function formatUserlistItem(div) {
|
||||||
$("<strong/>").text(data.name).appendTo(profile);
|
$("<strong/>").text(data.name).appendTo(profile);
|
||||||
|
|
||||||
var meta = div.data("meta") || {};
|
var meta = div.data("meta") || {};
|
||||||
if (meta.ip && !USEROPTS.disable_ip_tooltip) {
|
if (meta.ip && USEROPTS.show_ip_in_tooltip) {
|
||||||
$("<br/>").appendTo(profile);
|
$("<br/>").appendTo(profile);
|
||||||
$("<em/>").text(meta.ip).appendTo(profile);
|
$("<em/>").text(meta.ip).appendTo(profile);
|
||||||
}
|
}
|
||||||
|
@ -655,6 +655,7 @@ function showUserOptions() {
|
||||||
|
|
||||||
$("#us-modflair").prop("checked", USEROPTS.modhat);
|
$("#us-modflair").prop("checked", USEROPTS.modhat);
|
||||||
$("#us-shadowchat").prop("checked", USEROPTS.show_shadowchat);
|
$("#us-shadowchat").prop("checked", USEROPTS.show_shadowchat);
|
||||||
|
$("#us-show-ip-in-tooltip").prop("checked", USEROPTS.show_ip_in_tooltip);
|
||||||
|
|
||||||
formatScriptAccessPrefs();
|
formatScriptAccessPrefs();
|
||||||
|
|
||||||
|
@ -668,7 +669,7 @@ function saveUserOptions() {
|
||||||
USEROPTS.layout = $("#us-layout").val();
|
USEROPTS.layout = $("#us-layout").val();
|
||||||
USEROPTS.ignore_channelcss = $("#us-no-channelcss").prop("checked");
|
USEROPTS.ignore_channelcss = $("#us-no-channelcss").prop("checked");
|
||||||
USEROPTS.ignore_channeljs = $("#us-no-channeljs").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.synch = $("#us-synch").prop("checked");
|
||||||
USEROPTS.sync_accuracy = parseFloat($("#us-synch-accuracy").val()) || 2;
|
USEROPTS.sync_accuracy = parseFloat($("#us-synch-accuracy").val()) || 2;
|
||||||
|
|
Loading…
Reference in New Issue