FS-7509: fix typo
This commit is contained in:
parent
086cf1c279
commit
e3615e0d28
|
@ -255,6 +255,7 @@ function dial(ext)
|
||||||
|
|
||||||
<input type="radio" name="vqual" id="vqual_vga" value="vga">
|
<input type="radio" name="vqual" id="vqual_vga" value="vga">
|
||||||
<label for="vqual_vga">VGA 640x480</label>
|
<label for="vqual_vga">VGA 640x480</label>
|
||||||
|
|
||||||
<input type="radio" name="vqual" id="vqual_qvga_wide" value="qvga_wide">
|
<input type="radio" name="vqual" id="vqual_qvga_wide" value="qvga_wide">
|
||||||
<label for="vqual_qvga_wide">QVGA WIDE 320x180</label>
|
<label for="vqual_qvga_wide">QVGA WIDE 320x180</label>
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ var local_vid_height = 180;
|
||||||
|
|
||||||
var outgoingBandwidth;
|
var outgoingBandwidth;
|
||||||
var incomingBandwidth;
|
var incomingBandwidth;
|
||||||
|
var vqual;
|
||||||
|
|
||||||
$( ".selector" ).pagecontainer({ "theme": "a" });
|
$( ".selector" ).pagecontainer({ "theme": "a" });
|
||||||
|
|
||||||
|
@ -689,7 +690,7 @@ function init() {
|
||||||
$.cookie("verto_demo_vid_checked", tmp, {
|
$.cookie("verto_demo_vid_checked", tmp, {
|
||||||
expires: 365
|
expires: 365
|
||||||
});
|
});
|
||||||
console.error(tmp);
|
|
||||||
if (tmp !== "true") {
|
if (tmp !== "true") {
|
||||||
$("#camdiv").hide();
|
$("#camdiv").hide();
|
||||||
$(".sharediv").hide();
|
$(".sharediv").hide();
|
||||||
|
@ -870,11 +871,13 @@ function init() {
|
||||||
});
|
});
|
||||||
//
|
//
|
||||||
|
|
||||||
var vqual = $.cookie("verto_demo_vqual") || "qvga";
|
vqual = $.cookie("verto_demo_vqual") || "qvga";
|
||||||
$.cookie("verto_demo_vqual", vqual, {
|
$.cookie("verto_demo_vqual", vqual, {
|
||||||
expires: 365
|
expires: 365
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$("#vqual_qvga").prop("checked", vqual === "qvga").change(function(e) {
|
$("#vqual_qvga").prop("checked", vqual === "qvga").change(function(e) {
|
||||||
if ($("#vqual_qvga").is(':checked')) {
|
if ($("#vqual_qvga").is(':checked')) {
|
||||||
vqual = "qvga";
|
vqual = "qvga";
|
||||||
|
@ -905,7 +908,7 @@ function init() {
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
$("#vqual_vga").prop("checked", vqual === "vga_wide").change(function(e) {
|
$("#vqual_vga_wide").prop("checked", vqual === "vga_wide").change(function(e) {
|
||||||
if ($("#vqual_vga_wide").is(':checked')) {
|
if ($("#vqual_vga_wide").is(':checked')) {
|
||||||
vqual = "vga_wide";
|
vqual = "vga_wide";
|
||||||
$.cookie("verto_demo_vqual", vqual, {
|
$.cookie("verto_demo_vqual", vqual, {
|
||||||
|
@ -935,8 +938,6 @@ function init() {
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
tmp = $.cookie("verto_demo_stereo_checked") || "true";
|
tmp = $.cookie("verto_demo_stereo_checked") || "true";
|
||||||
$.cookie("verto_demo_stereo_checked", tmp, {
|
$.cookie("verto_demo_stereo_checked", tmp, {
|
||||||
expires: 365
|
expires: 365
|
||||||
|
|
Loading…
Reference in New Issue