<input type="radio" name="vqual" id="vqual_vga" value="vga">
<label for="vqual_vga">VGA 640x480</label>
+
<input type="radio" name="vqual" id="vqual_qvga_wide" value="qvga_wide">
<label for="vqual_qvga_wide">QVGA WIDE 320x180</label>
var outgoingBandwidth;
var incomingBandwidth;
+var vqual;
$( ".selector" ).pagecontainer({ "theme": "a" });
$.cookie("verto_demo_vid_checked", tmp, {
expires: 365
});
- console.error(tmp);
+
if (tmp !== "true") {
$("#camdiv").hide();
$(".sharediv").hide();
});
//
- var vqual = $.cookie("verto_demo_vqual") || "qvga";
+ vqual = $.cookie("verto_demo_vqual") || "qvga";
$.cookie("verto_demo_vqual", vqual, {
expires: 365
});
+
+
$("#vqual_qvga").prop("checked", vqual === "qvga").change(function(e) {
if ($("#vqual_qvga").is(':checked')) {
vqual = "qvga";
});
- $("#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')) {
vqual = "vga_wide";
$.cookie("verto_demo_vqual", vqual, {
}
});
-
-
tmp = $.cookie("verto_demo_stereo_checked") || "true";
$.cookie("verto_demo_stereo_checked", tmp, {