Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
// Update Status
$(".update_button").click(function()
{
var updateval = $("#update").val();
var uploadvalues=$("#uploadvalues").val();
var X=$('.preview').attr('id');
var Y=$('.webcam_preview').attr('id');
if(X)
var Z= X+','+uploadvalues;
else if(Y)
var Z= uploadvalues;
else
var Z=0;
var dataString = 'update='+ updateval+'&uploads='+Z;
if($.trim(updateval).length==0)
{
alert("Please enter some text in the status box");
}
else
{
$("#flash").show();
$("#flash").fadeIn(400).html('Loading update...');
$.ajax({
type: "POST",
url: "library/wall/message_ajax.php",
data: dataString,
cache: false,
success: function(html)
{
$("#webcam_container").slideUp('fast');
$("#video_container").slideUp('fast');
$("#flash").fadeOut('slow');
$("#content").prepend(html);
$("#update").val('');
$("#update").focus();
$('#preview').html('');
$('#webcam_preview').html('');
$('#uploadvalues').val('');
$('#photoimg').val('');
$("#stexpand").oembed(updateval);
}
});
$("#preview").html();
$('#imageupload').slideUp('fast');
}
return false;
});