Fix #346
This commit is contained in:
parent
7c252eab2f
commit
445d8be55d
|
@ -599,7 +599,7 @@ function showUserOptions() {
|
|||
}
|
||||
|
||||
$("#us-synch").prop("checked", USEROPTS.synch);
|
||||
$("#us-synch-accuracy").val(USEROPTS.synch_accuracy);
|
||||
$("#us-synch-accuracy").val(USEROPTS.sync_accuracy);
|
||||
$("#us-wmode-transparent").prop("checked", USEROPTS.wmode_transparent);
|
||||
$("#us-no-h264").prop("checked", USEROPTS.no_h264);
|
||||
$("#us-hidevideo").prop("checked", USEROPTS.hidevid);
|
||||
|
@ -631,7 +631,7 @@ function saveUserOptions() {
|
|||
USEROPTS.secure_connection = $("#us-ssl").prop("checked");
|
||||
|
||||
USEROPTS.synch = $("#us-synch").prop("checked");
|
||||
USEROPTS.synch_accuracy = parseFloat($("#us-synch-accuracy").val()) || 2;
|
||||
USEROPTS.sync_accuracy = parseFloat($("#us-synch-accuracy").val()) || 2;
|
||||
USEROPTS.wmode_transparent = $("#us-wmode-transparent").prop("checked");
|
||||
USEROPTS.no_h264 = $("#us-no-h264").prop("checked");
|
||||
USEROPTS.hidevid = $("#us-hidevideo").prop("checked");
|
||||
|
|
Loading…
Reference in a new issue