2012-07-24 11:16:51 -04:00
|
|
|
|
2012-12-27 14:20:47 -05:00
|
|
|
function openClose(listID) {
|
2017-01-26 22:54:32 -05:00
|
|
|
/* if(document.getElementById(theID).style.display == "block") {
|
|
|
|
document.getElementById(theID).style.display = "none"
|
2012-12-27 14:20:47 -05:00
|
|
|
}
|
2017-01-26 22:54:32 -05:00
|
|
|
else {
|
|
|
|
document.getElementById(theID).style.display = "block"
|
2012-12-27 14:20:47 -05:00
|
|
|
}*/
|
|
|
|
listID = "#" + listID.replace(/:/g, "\\:");
|
|
|
|
listID = listID.replace(/\./g, "\\.");
|
|
|
|
listID = listID.replace(/@/g, "\\@");
|
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
if($(listID).is(":visible")) {
|
|
|
|
$(listID).hide();
|
|
|
|
$(listID+"-wrapper").show();
|
2012-12-27 14:20:47 -05:00
|
|
|
}
|
|
|
|
else {
|
2013-06-01 12:42:51 -04:00
|
|
|
$(listID).show();
|
|
|
|
$(listID+"-wrapper").hide();
|
2012-12-27 14:20:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function openMenu(theID) {
|
2017-01-26 22:54:32 -05:00
|
|
|
document.getElementById(theID).style.display = "block"
|
2012-12-27 14:20:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function closeMenu(theID) {
|
2017-01-26 22:54:32 -05:00
|
|
|
document.getElementById(theID).style.display = "none"
|
2012-12-27 14:20:47 -05:00
|
|
|
}
|
2012-07-24 11:16:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var src = null;
|
|
|
|
var prev = null;
|
|
|
|
var livetime = null;
|
|
|
|
var stopped = false;
|
|
|
|
var totStopped = false;
|
|
|
|
var timer = null;
|
|
|
|
var pr = 0;
|
|
|
|
var liking = 0;
|
|
|
|
var in_progress = false;
|
|
|
|
var langSelect = false;
|
|
|
|
var commentBusy = false;
|
|
|
|
var last_popup_menu = null;
|
|
|
|
var last_popup_button = null;
|
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
$(function() {
|
|
|
|
$.ajaxSetup({cache: false});
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2014-09-22 07:53:16 -04:00
|
|
|
//collapseHeight();
|
2012-11-06 10:43:19 -05:00
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
/* setup tooltips *//*
|
2013-06-01 12:42:51 -04:00
|
|
|
$("a,.tt").each(function(){
|
|
|
|
var e = $(this);
|
2012-07-24 11:16:51 -04:00
|
|
|
var pos="bottom";
|
|
|
|
if (e.hasClass("tttop")) pos="top";
|
|
|
|
if (e.hasClass("ttbottom")) pos="bottom";
|
|
|
|
if (e.hasClass("ttleft")) pos="left";
|
|
|
|
if (e.hasClass("ttright")) pos="right";
|
|
|
|
e.tipTip({defaultPosition: pos, edgeOffset: 8});
|
|
|
|
});*/
|
2017-01-26 22:54:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
/* setup onoff widgets */
|
2013-06-01 12:42:51 -04:00
|
|
|
$(".onoff input").each(function(){
|
|
|
|
val = $(this).val();
|
|
|
|
id = $(this).attr("id");
|
|
|
|
$("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden");
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
2013-06-01 12:42:51 -04:00
|
|
|
$(".onoff > a").click(function(event){
|
2017-01-26 22:54:32 -05:00
|
|
|
event.preventDefault();
|
2013-06-01 12:42:51 -04:00
|
|
|
var input = $(this).siblings("input");
|
2012-07-24 11:16:51 -04:00
|
|
|
var val = 1-input.val();
|
|
|
|
var id = input.attr("id");
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden");
|
|
|
|
$("#"+id+"_onoff ."+ (val==1?"on":"off")).removeClass("hidden");
|
2012-07-24 11:16:51 -04:00
|
|
|
input.val(val);
|
|
|
|
});
|
|
|
|
|
|
|
|
/* popup menus */
|
|
|
|
function close_last_popup_menu(e) {
|
|
|
|
|
|
|
|
if( last_popup_menu ) {
|
2013-06-01 12:42:51 -04:00
|
|
|
if( '#' + last_popup_menu.attr('id') !== $(e.target).attr('rel')) {
|
2012-07-24 11:16:51 -04:00
|
|
|
last_popup_menu.hide();
|
2013-06-01 12:42:51 -04:00
|
|
|
if (last_popup_menu.attr('id') == "nav-notifications-menu" ) $('.main-container').show();
|
2012-07-24 11:16:51 -04:00
|
|
|
last_popup_button.removeClass("selected");
|
|
|
|
last_popup_menu = null;
|
|
|
|
last_popup_button = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-01 12:42:51 -04:00
|
|
|
$('img[rel^=#]').click(function(e){
|
2012-07-24 11:16:51 -04:00
|
|
|
|
|
|
|
close_last_popup_menu(e);
|
2013-06-01 12:42:51 -04:00
|
|
|
menu = $( $(this).attr('rel') );
|
2012-07-24 11:16:51 -04:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
if (menu.attr('popup')=="false") return false;
|
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
// $(this).parent().toggleClass("selected");
|
2012-07-24 11:16:51 -04:00
|
|
|
// menu.toggle();
|
|
|
|
|
|
|
|
if (menu.css("display") == "none") {
|
2013-06-01 12:42:51 -04:00
|
|
|
$(this).parent().addClass("selected");
|
2012-07-24 11:16:51 -04:00
|
|
|
menu.show();
|
2013-06-01 12:42:51 -04:00
|
|
|
if (menu.attr('id') == "nav-notifications-menu" ) $('.main-container').hide();
|
2012-07-24 11:16:51 -04:00
|
|
|
last_popup_menu = menu;
|
2013-06-01 12:42:51 -04:00
|
|
|
last_popup_button = $(this).parent();
|
2012-07-24 11:16:51 -04:00
|
|
|
} else {
|
2013-06-01 12:42:51 -04:00
|
|
|
$(this).parent().removeClass("selected");
|
2012-07-24 11:16:51 -04:00
|
|
|
menu.hide();
|
2013-06-01 12:42:51 -04:00
|
|
|
if (menu.attr('id') == "nav-notifications-menu" ) $('.main-container').show();
|
2012-07-24 11:16:51 -04:00
|
|
|
last_popup_menu = null;
|
|
|
|
last_popup_button = null;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
2013-06-01 12:42:51 -04:00
|
|
|
$('html').click(function(e) {
|
2012-07-24 11:16:51 -04:00
|
|
|
close_last_popup_menu(e);
|
|
|
|
});
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
// fancyboxes
|
2013-06-01 12:42:51 -04:00
|
|
|
/*$("a.popupbox").colorbox({
|
2013-02-04 20:06:43 -05:00
|
|
|
'inline' : true,
|
|
|
|
'transition' : 'none'
|
2012-07-24 11:16:51 -04:00
|
|
|
});*/
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
|
|
|
|
/* notifications template */
|
2013-06-01 12:42:51 -04:00
|
|
|
var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html());
|
|
|
|
var notifications_all = unescape($('<div>').append( $("#nav-notifications-see-all").clone() ).html()); //outerHtml hack
|
|
|
|
var notifications_mark = unescape($('<div>').append( $("#nav-notifications-mark-all").clone() ).html()); //outerHtml hack
|
|
|
|
var notifications_empty = unescape($("#nav-notifications-menu").html());
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
/* nav update event */
|
2013-06-01 12:42:51 -04:00
|
|
|
$('nav').bind('nav-update', function(e,data){;
|
|
|
|
var invalid = $(data).find('invalid').text();
|
2012-07-24 11:16:51 -04:00
|
|
|
if(invalid == 1) { window.location.href=window.location.href }
|
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
var net = $(data).find('net').text();
|
|
|
|
if(net == 0) { net = ''; $('#net-update').removeClass('show') } else { $('#net-update').addClass('show') }
|
|
|
|
$('#net-update').html(net);
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
var home = $(data).find('home').text();
|
|
|
|
if(home == 0) { home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') }
|
|
|
|
$('#home-update').html(home);
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
var intro = $(data).find('intro').text();
|
|
|
|
if(intro == 0) { intro = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') }
|
|
|
|
$('#intro-update').html(intro);
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
var mail = $(data).find('mail').text();
|
|
|
|
if(mail == 0) { mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') }
|
|
|
|
$('#mail-update').html(mail);
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
var intro = $(data).find('intro').text();
|
|
|
|
if(intro == 0) { intro = ''; $('#intro-update-li').removeClass('show') } else { $('#intro-update-li').addClass('show') }
|
|
|
|
$('#intro-update-li').html(intro);
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
var mail = $(data).find('mail').text();
|
|
|
|
if(mail == 0) { mail = ''; $('#mail-update-li').removeClass('show') } else { $('#mail-update-li').addClass('show') }
|
|
|
|
$('#mail-update-li').html(mail);
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
var eNotif = $(data).find('notif')
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
if (eNotif.children("note").length==0){
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#nav-notifications-menu").html(notifications_empty);
|
2012-07-24 11:16:51 -04:00
|
|
|
} else {
|
2013-06-01 12:42:51 -04:00
|
|
|
nnm = $("#nav-notifications-menu");
|
2012-07-24 11:16:51 -04:00
|
|
|
nnm.html(notifications_all + notifications_mark);
|
|
|
|
//nnm.attr('popup','true');
|
|
|
|
eNotif.children("note").each(function(){
|
2013-06-01 12:42:51 -04:00
|
|
|
e = $(this);
|
2012-07-24 11:16:51 -04:00
|
|
|
text = e.text().format("<span class='contactname'>"+e.attr('name')+"</span>");
|
|
|
|
html = notifications_tpl.format(e.attr('href'),e.attr('photo'), text, e.attr('date'), e.attr('seen'));
|
|
|
|
nnm.append(html);
|
|
|
|
});
|
2012-12-29 18:28:48 -05:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
$("img[data-src]", nnm).each(function(i, el){
|
2013-01-02 08:28:13 -05:00
|
|
|
// Add src attribute for images with a data-src attribute
|
2013-05-11 11:43:21 -04:00
|
|
|
// However, don't bother if the data-src attribute is empty, because
|
|
|
|
// an empty "src" tag for an image will cause some browsers
|
|
|
|
// to prefetch the root page of the Friendica hub, which will
|
|
|
|
// unnecessarily load an entire profile/ or network/ page
|
2013-06-01 12:42:51 -04:00
|
|
|
if($(el).data("src") != '') $(el).attr('src', $(el).data("src"));
|
2012-12-29 18:28:48 -05:00
|
|
|
});
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
notif = eNotif.attr('count');
|
|
|
|
if (notif>0){
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#nav-notifications-linkmenu").addClass("on");
|
2012-07-24 11:16:51 -04:00
|
|
|
} else {
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#nav-notifications-linkmenu").removeClass("on");
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
2013-06-01 12:42:51 -04:00
|
|
|
if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') }
|
|
|
|
$('#notify-update').html(notif);
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
var eSysmsg = $(data).find('sysmsgs');
|
2012-07-24 11:16:51 -04:00
|
|
|
eSysmsg.children("notice").each(function(){
|
2013-06-01 12:42:51 -04:00
|
|
|
text = $(this).text();
|
|
|
|
$.jGrowl(text, { sticky: false, theme: 'notice', life: 1000 });
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
eSysmsg.children("info").each(function(){
|
2013-06-01 12:42:51 -04:00
|
|
|
text = $(this).text();
|
|
|
|
$.jGrowl(text, { sticky: false, theme: 'info', life: 1000 });
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
2017-01-26 22:54:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
NavUpdate();
|
2012-07-24 11:16:51 -04:00
|
|
|
// Allow folks to stop the ajax page updates with the pause/break key
|
2013-06-01 12:42:51 -04:00
|
|
|
/* $(document).keydown(function(event) {
|
2012-07-24 11:16:51 -04:00
|
|
|
if(event.keyCode == '8') {
|
|
|
|
var target = event.target || event.srcElement;
|
|
|
|
if (!/input|textarea/i.test(target.nodeName)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(event.keyCode == '19' || (event.ctrlKey && event.which == '32')) {
|
|
|
|
event.preventDefault();
|
|
|
|
if(stopped == false) {
|
|
|
|
stopped = true;
|
|
|
|
if (event.ctrlKey) {
|
|
|
|
totStopped = true;
|
|
|
|
}
|
2013-06-01 12:42:51 -04:00
|
|
|
$('#pause').html('<img src="images/pause.gif" alt="pause" style="border: 1px solid black;" />');
|
2012-07-24 11:16:51 -04:00
|
|
|
} else {
|
|
|
|
unpause();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!totStopped) {
|
|
|
|
unpause();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});*/
|
2017-01-26 22:54:32 -05:00
|
|
|
|
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
function NavUpdate() {
|
|
|
|
|
|
|
|
if(! stopped) {
|
|
|
|
var pingCmd = 'ping' + ((localUser != 0) ? '?f=&uid=' + localUser : '');
|
2013-06-01 12:42:51 -04:00
|
|
|
$.get(pingCmd,function(data) {
|
|
|
|
$(data).find('result').each(function() {
|
2012-07-24 11:16:51 -04:00
|
|
|
// send nav-update event
|
2013-06-01 12:42:51 -04:00
|
|
|
$('nav').trigger('nav-update', this);
|
2017-01-26 22:54:32 -05:00
|
|
|
|
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
// start live update
|
|
|
|
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
if($('#live-network').length) { src = 'network'; liveUpdate(); }
|
|
|
|
if($('#live-profile').length) { src = 'profile'; liveUpdate(); }
|
|
|
|
if($('#live-community').length) { src = 'community'; liveUpdate(); }
|
|
|
|
if($('#live-notes').length) { src = 'notes'; liveUpdate(); }
|
|
|
|
if($('#live-display').length) { src = 'display'; liveUpdate(); }
|
|
|
|
/*if($('#live-display').length) {
|
2012-07-24 11:16:51 -04:00
|
|
|
if(liking) {
|
|
|
|
liking = 0;
|
2017-01-26 22:54:32 -05:00
|
|
|
window.location.href=window.location.href
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
2012-11-01 20:31:50 -04:00
|
|
|
}*/
|
2013-06-01 12:42:51 -04:00
|
|
|
if($('#live-photos').length) {
|
2012-07-24 11:16:51 -04:00
|
|
|
if(liking) {
|
|
|
|
liking = 0;
|
2017-01-26 22:54:32 -05:00
|
|
|
window.location.href=window.location.href
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-26 22:54:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
}) ;
|
|
|
|
}
|
|
|
|
timer = setTimeout(NavUpdate,updateInterval);
|
|
|
|
}
|
|
|
|
|
|
|
|
function liveUpdate() {
|
2013-06-01 12:42:51 -04:00
|
|
|
if((src == null) || (stopped) || (typeof profile_uid == 'undefined') || (! profile_uid)) { $('.like-rotator').hide(); return; }
|
|
|
|
if(($('.comment-edit-text-full').length) || (in_progress)) {
|
2012-07-24 11:16:51 -04:00
|
|
|
if(livetime) {
|
|
|
|
clearTimeout(livetime);
|
|
|
|
}
|
2015-02-19 15:24:09 -05:00
|
|
|
livetime = setTimeout(liveUpdate, 5000);
|
2012-07-24 11:16:51 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(livetime != null)
|
|
|
|
livetime = null;
|
|
|
|
|
|
|
|
prev = 'live-' + src;
|
|
|
|
|
|
|
|
in_progress = true;
|
|
|
|
var udargs = ((netargs.length) ? '/' + netargs : '');
|
2014-09-06 10:21:03 -04:00
|
|
|
var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page;
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
$.get(update_url,function(data) {
|
2012-07-24 11:16:51 -04:00
|
|
|
in_progress = false;
|
2013-06-01 12:42:51 -04:00
|
|
|
// $('.collapsed-comments',data).each(function() {
|
|
|
|
// var ident = $(this).attr('id');
|
|
|
|
// var is_hidden = $('#' + ident).is(':hidden');
|
|
|
|
// if($('#' + ident).length) {
|
|
|
|
// $('#' + ident).replaceWith($(this));
|
2012-07-24 11:16:51 -04:00
|
|
|
// if(is_hidden)
|
2013-06-01 12:42:51 -04:00
|
|
|
// $('#' + ident).hide();
|
2012-07-24 11:16:51 -04:00
|
|
|
// }
|
|
|
|
//});
|
|
|
|
|
|
|
|
// add a new thread
|
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
$('.toplevel_item',data).each(function() {
|
|
|
|
var ident = $(this).attr('id');
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
if($('#' + ident).length == 0 && profile_page == 1) {
|
|
|
|
$('img',this).each(function() {
|
|
|
|
$(this).attr('src',$(this).attr('dst'));
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
2013-06-01 12:42:51 -04:00
|
|
|
$('#' + prev).after($(this));
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
else {
|
2012-11-01 20:31:50 -04:00
|
|
|
// Find out if the hidden comments are open, so we can keep it that way
|
|
|
|
// if a new comment has been posted
|
2013-06-01 12:42:51 -04:00
|
|
|
var id = $('.hide-comments-total', this).attr('id');
|
2012-11-01 20:31:50 -04:00
|
|
|
if(typeof id != 'undefined') {
|
|
|
|
id = id.split('-')[3];
|
2013-06-01 12:42:51 -04:00
|
|
|
var commentsOpen = $("#collapsed-comments-" + id).is(":visible");
|
2012-11-01 20:31:50 -04:00
|
|
|
}
|
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
$('img',this).each(function() {
|
|
|
|
$(this).attr('src',$(this).attr('dst'));
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
2013-06-01 12:42:51 -04:00
|
|
|
//vScroll = $(document).scrollTop();
|
|
|
|
$('html').height($('html').height());
|
|
|
|
$('#' + ident).replaceWith($(this));
|
2012-11-01 20:31:50 -04:00
|
|
|
|
|
|
|
if(typeof id != 'undefined') {
|
|
|
|
if(commentsOpen) showHideComments(id);
|
|
|
|
}
|
2013-06-01 12:42:51 -04:00
|
|
|
$('html').height('auto');
|
|
|
|
//$(document).scrollTop(vScroll);
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
prev = ident;
|
|
|
|
});
|
|
|
|
|
2012-09-19 22:35:39 -04:00
|
|
|
|
2012-11-06 10:43:19 -05:00
|
|
|
collapseHeight();
|
2012-09-19 22:35:39 -04:00
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
// reset vars for inserting individual items
|
|
|
|
|
|
|
|
/*prev = 'live-' + src;
|
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
$('.wall-item-outside-wrapper',data).each(function() {
|
|
|
|
var ident = $(this).attr('id');
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
if($('#' + ident).length == 0 && prev != 'live-' + src) {
|
|
|
|
$('img',this).each(function() {
|
|
|
|
$(this).attr('src',$(this).attr('dst'));
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
2013-06-01 12:42:51 -04:00
|
|
|
$('#' + prev).after($(this));
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
2017-01-26 22:54:32 -05:00
|
|
|
else {
|
|
|
|
$('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago'));
|
2013-06-01 12:42:51 -04:00
|
|
|
if($('#' + ident + ' ' + '.comment-edit-text-empty').length)
|
|
|
|
$('#' + ident + ' ' + '.wall-item-comment-wrapper').replaceWith($(this).find('.wall-item-comment-wrapper'));
|
|
|
|
$('#' + ident + ' ' + '.hide-comments-total').replaceWith($(this).find('.hide-comments-total'));
|
|
|
|
$('#' + ident + ' ' + '.wall-item-like').replaceWith($(this).find('.wall-item-like'));
|
|
|
|
$('#' + ident + ' ' + '.wall-item-dislike').replaceWith($(this).find('.wall-item-dislike'));
|
|
|
|
$('#' + ident + ' ' + '.my-comment-photo').each(function() {
|
|
|
|
$(this).attr('src',$(this).attr('dst'));
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
}
|
2017-01-26 22:54:32 -05:00
|
|
|
prev = ident;
|
2012-07-24 11:16:51 -04:00
|
|
|
});*/
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
$('.like-rotator').hide();
|
2012-07-24 11:16:51 -04:00
|
|
|
if(commentBusy) {
|
|
|
|
commentBusy = false;
|
2013-06-01 12:42:51 -04:00
|
|
|
$('body').css('cursor', 'auto');
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
/* autocomplete @nicknames */
|
2016-01-21 07:28:29 -05:00
|
|
|
$(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl");
|
2013-05-03 20:17:56 -04:00
|
|
|
|
|
|
|
// setup videos, since VideoJS won't take care of any loaded via AJAX
|
2013-05-11 12:49:54 -04:00
|
|
|
if(typeof videojs != 'undefined') videojs.autoSetup();
|
2012-08-26 00:41:22 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-11-06 10:43:19 -05:00
|
|
|
function collapseHeight(elems) {
|
|
|
|
var elemName = '.wall-item-body:not(.divmore)';
|
|
|
|
if(typeof elems != 'undefined') {
|
|
|
|
elemName = elems + ' ' + elemName;
|
|
|
|
}
|
2013-06-01 12:42:51 -04:00
|
|
|
$(elemName).each(function() {
|
2014-09-22 07:53:16 -04:00
|
|
|
$('html').height($('html').height());
|
|
|
|
$(this).readmore({maxheight:350 , moreLink:'<a href="#" class="showmore">+ Show more</a>', lessLink:'<a href="#" class="showmore">+ Show less</a>'});
|
|
|
|
$(this).addClass('divmore');
|
|
|
|
$('html').height('auto');
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
2012-08-26 17:21:26 -04:00
|
|
|
}
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2013-02-10 12:21:52 -05:00
|
|
|
/* function imgbright(node) {
|
2013-06-01 12:42:51 -04:00
|
|
|
$(node).removeClass("drophide").addClass("drop");
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function imgdull(node) {
|
2013-06-01 12:42:51 -04:00
|
|
|
$(node).removeClass("drop").addClass("drophide");
|
2013-02-10 12:21:52 -05:00
|
|
|
}*/
|
2012-07-24 11:16:51 -04:00
|
|
|
|
2017-01-26 22:54:32 -05:00
|
|
|
// Since our ajax calls are asynchronous, we will give a few
|
|
|
|
// seconds for the first ajax call (setting like/dislike), then
|
2012-07-24 11:16:51 -04:00
|
|
|
// run the updater to pick up any changes and display on the page.
|
2017-01-26 22:54:32 -05:00
|
|
|
// The updater will turn any rotators off when it's done.
|
2012-07-24 11:16:51 -04:00
|
|
|
// This function will have returned long before any of these
|
|
|
|
// events have completed and therefore there won't be any
|
|
|
|
// visible feedback that anything changed without all this
|
|
|
|
// trickery. This still could cause confusion if the "like" ajax call
|
|
|
|
// is delayed and NavUpdate runs before it completes.
|
|
|
|
|
|
|
|
function dolike(ident,verb) {
|
|
|
|
unpause();
|
2013-06-01 12:42:51 -04:00
|
|
|
$('#like-rotator-' + ident.toString()).show();
|
|
|
|
$.get('like/' + ident.toString() + '?verb=' + verb, NavUpdate );
|
2012-07-24 11:16:51 -04:00
|
|
|
// if(timer) clearTimeout(timer);
|
|
|
|
// timer = setTimeout(NavUpdate,3000);
|
|
|
|
liking = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
function dostar(ident) {
|
|
|
|
ident = ident.toString();
|
2013-06-01 12:42:51 -04:00
|
|
|
//$('#like-rotator-' + ident).show();
|
|
|
|
$.get('starred/' + ident, function(data) {
|
2012-07-24 11:16:51 -04:00
|
|
|
if(data.match(/1/)) {
|
2013-06-01 12:42:51 -04:00
|
|
|
$('#starred-' + ident).addClass('starred');
|
|
|
|
$('#starred-' + ident).removeClass('unstarred');
|
|
|
|
$('#star-' + ident).addClass('hidden');
|
|
|
|
$('#unstar-' + ident).removeClass('hidden');
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
2017-01-26 22:54:32 -05:00
|
|
|
else {
|
2013-06-01 12:42:51 -04:00
|
|
|
$('#starred-' + ident).addClass('unstarred');
|
|
|
|
$('#starred-' + ident).removeClass('starred');
|
|
|
|
$('#star-' + ident).removeClass('hidden');
|
|
|
|
$('#unstar-' + ident).addClass('hidden');
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
2017-01-26 22:54:32 -05:00
|
|
|
//$('#like-rotator-' + ident).hide();
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPosition(e) {
|
|
|
|
var cursor = {x:0, y:0};
|
2013-02-10 12:21:52 -05:00
|
|
|
if ( e.pageX || e.pageY ) {
|
|
|
|
cursor.x = e.pageX;
|
|
|
|
cursor.y = e.pageY;
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
else {
|
2013-02-10 12:21:52 -05:00
|
|
|
if( e.clientX || e.clientY ) {
|
|
|
|
cursor.x = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft;
|
|
|
|
cursor.y = e.clientY + (document.documentElement.scrollTop || document.body.scrollTop) - document.documentElement.clientTop;
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
else {
|
2013-02-10 12:21:52 -05:00
|
|
|
if( e.x || e.y ) {
|
|
|
|
cursor.x = e.x;
|
|
|
|
cursor.y = e.y;
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
var lockvisible = false;
|
|
|
|
|
|
|
|
function lockview(event,id) {
|
|
|
|
event = event || window.event;
|
|
|
|
cursor = getPosition(event);
|
|
|
|
if(lockvisible) {
|
|
|
|
lockviewhide();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lockvisible = true;
|
2013-06-01 12:42:51 -04:00
|
|
|
$.get('lockview/' + id, function(data) {
|
|
|
|
$('#panel').html(data);
|
|
|
|
$('#panel').css({ 'left': 10 , 'top': cursor.y + 20});
|
|
|
|
$('#panel').show();
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function lockviewhide() {
|
|
|
|
lockvisible = false;
|
2013-06-01 12:42:51 -04:00
|
|
|
$('#panel').hide();
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function post_comment(id) {
|
|
|
|
unpause();
|
|
|
|
commentBusy = true;
|
2013-06-01 12:42:51 -04:00
|
|
|
$('body').css('cursor', 'wait');
|
|
|
|
$("#comment-preview-inp-" + id).val("0");
|
2017-01-26 22:54:32 -05:00
|
|
|
$.post(
|
|
|
|
"item",
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#comment-edit-form-" + id).serialize(),
|
2012-07-24 11:16:51 -04:00
|
|
|
function(data) {
|
|
|
|
if(data.success) {
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#comment-edit-wrapper-" + id).hide();
|
|
|
|
$("#comment-edit-text-" + id).val('');
|
2012-07-24 11:16:51 -04:00
|
|
|
var tarea = document.getElementById("comment-edit-text-" + id);
|
|
|
|
if(tarea)
|
|
|
|
commentClose(tarea,id);
|
|
|
|
if(timer) clearTimeout(timer);
|
|
|
|
timer = setTimeout(NavUpdate,10);
|
|
|
|
}
|
|
|
|
if(data.reload) {
|
|
|
|
window.location.href=data.reload;
|
|
|
|
}
|
|
|
|
},
|
2017-01-26 22:54:32 -05:00
|
|
|
"json"
|
|
|
|
);
|
|
|
|
return false;
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function preview_comment(id) {
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#comment-preview-inp-" + id).val("1");
|
|
|
|
$("#comment-edit-preview-" + id).show();
|
2017-01-26 22:54:32 -05:00
|
|
|
$.post(
|
|
|
|
"item",
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#comment-edit-form-" + id).serialize(),
|
2012-07-24 11:16:51 -04:00
|
|
|
function(data) {
|
|
|
|
if(data.preview) {
|
2017-01-26 22:54:32 -05:00
|
|
|
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#comment-edit-preview-" + id).html(data.preview);
|
|
|
|
$("#comment-edit-preview-" + id + " a").click(function() { return false; });
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
},
|
2017-01-26 22:54:32 -05:00
|
|
|
"json"
|
|
|
|
);
|
|
|
|
return true;
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-01 20:31:50 -04:00
|
|
|
function showHideComments(id) {
|
2013-06-01 12:42:51 -04:00
|
|
|
if( $("#collapsed-comments-" + id).is(":visible")) {
|
|
|
|
$("#collapsed-comments-" + id).hide();
|
|
|
|
$("#hide-comments-" + id).html(window.showMore);
|
2012-11-01 20:31:50 -04:00
|
|
|
}
|
|
|
|
else {
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#collapsed-comments-" + id).show();
|
|
|
|
$("#hide-comments-" + id).html(window.showFewer);
|
2012-11-06 10:43:19 -05:00
|
|
|
collapseHeight("#collapsed-comments-" + id);
|
2012-11-01 20:31:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 11:16:51 -04:00
|
|
|
|
|
|
|
function preview_post() {
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#jot-preview").val("1");
|
|
|
|
$("#jot-preview-content").show();
|
2017-01-26 22:54:32 -05:00
|
|
|
$.post(
|
|
|
|
"item",
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#profile-jot-form").serialize(),
|
2012-07-24 11:16:51 -04:00
|
|
|
function(data) {
|
2017-01-26 22:54:32 -05:00
|
|
|
if(data.preview) {
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#jot-preview-content").html(data.preview);
|
|
|
|
$("#jot-preview-content" + " a").click(function() { return false; });
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
},
|
2017-01-26 22:54:32 -05:00
|
|
|
"json"
|
|
|
|
);
|
2013-06-01 12:42:51 -04:00
|
|
|
$("#jot-preview").val("0");
|
2017-01-26 22:54:32 -05:00
|
|
|
return true;
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function unpause() {
|
|
|
|
// unpause auto reloads if they are currently stopped
|
|
|
|
totStopped = false;
|
|
|
|
stopped = false;
|
2013-06-01 12:42:51 -04:00
|
|
|
$('#pause').html('');
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
2017-01-26 22:54:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
function bin2hex(s){
|
|
|
|
// Converts the binary representation of data to hex
|
|
|
|
//
|
|
|
|
// version: 812.316
|
|
|
|
// discuss at: http://phpjs.org/functions/bin2hex
|
|
|
|
// + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
|
|
|
|
// + bugfixed by: Onno Marsman
|
|
|
|
// + bugfixed by: Linuxworld
|
|
|
|
// * example 1: bin2hex('Kev');
|
|
|
|
// * returns 1: '4b6576'
|
|
|
|
// * example 2: bin2hex(String.fromCharCode(0x00));
|
|
|
|
// * returns 2: '00'
|
|
|
|
var v,i, f = 0, a = [];
|
|
|
|
s += '';
|
|
|
|
f = s.length;
|
|
|
|
|
|
|
|
for (i = 0; i<f; i++) {
|
|
|
|
a[i] = s.charCodeAt(i).toString(16).replace(/^([\da-f])$/,"0$1");
|
|
|
|
}
|
|
|
|
|
|
|
|
return a.join('');
|
|
|
|
}
|
2012-07-24 11:16:51 -04:00
|
|
|
|
|
|
|
function groupChangeMember(gid, cid, sec_token) {
|
2013-06-01 12:42:51 -04:00
|
|
|
$('body .fakelink').css('cursor', 'wait');
|
|
|
|
$.get('group/' + gid + '/' + cid + "?t=" + sec_token, function(data) {
|
|
|
|
$('#group-update-wrapper').html(data);
|
2017-01-26 22:54:32 -05:00
|
|
|
$('body .fakelink').css('cursor', 'auto');
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function profChangeMember(gid,cid) {
|
2013-06-01 12:42:51 -04:00
|
|
|
$('body .fakelink').css('cursor', 'wait');
|
|
|
|
$.get('profperm/' + gid + '/' + cid, function(data) {
|
|
|
|
$('#prof-update-wrapper').html(data);
|
2017-01-26 22:54:32 -05:00
|
|
|
$('body .fakelink').css('cursor', 'auto');
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function contactgroupChangeMember(gid,cid) {
|
2013-06-01 12:42:51 -04:00
|
|
|
$('body').css('cursor', 'wait');
|
|
|
|
$.get('contactgroup/' + gid + '/' + cid, function(data) {
|
|
|
|
$('body').css('cursor', 'auto');
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function checkboxhighlight(box) {
|
2013-06-01 12:42:51 -04:00
|
|
|
if($(box).is(':checked')) {
|
|
|
|
$(box).addClass('checkeditem');
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
else {
|
2013-06-01 12:42:51 -04:00
|
|
|
$(box).removeClass('checkeditem');
|
2012-07-24 11:16:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function notifyMarkAll() {
|
2013-06-01 12:42:51 -04:00
|
|
|
$.get('notify/mark/all', function(data) {
|
2012-07-24 11:16:51 -04:00
|
|
|
if(timer) clearTimeout(timer);
|
|
|
|
timer = setTimeout(NavUpdate,1000);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-01-26 22:54:32 -05:00
|
|
|
/**
|
|
|
|
* sprintf in javascript
|
|
|
|
* "{0} and {1}".format('zero','uno');
|
2012-07-24 11:16:51 -04:00
|
|
|
**/
|
|
|
|
String.prototype.format = function() {
|
|
|
|
var formatted = this;
|
|
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
|
|
var regexp = new RegExp('\\{'+i+'\\}', 'gi');
|
|
|
|
formatted = formatted.replace(regexp, arguments[i]);
|
|
|
|
}
|
|
|
|
return formatted;
|
|
|
|
};
|
|
|
|
// Array Remove
|
|
|
|
Array.prototype.remove = function(item) {
|
|
|
|
to=undefined; from=this.indexOf(item);
|
|
|
|
var rest = this.slice((to || from) + 1 || this.length);
|
|
|
|
this.length = from < 0 ? this.length + from : from;
|
|
|
|
return this.push.apply(this, rest);
|
|
|
|
};
|
|
|
|
|
|
|
|
function previewTheme(elm) {
|
2013-06-01 12:42:51 -04:00
|
|
|
theme = $(elm).val();
|
|
|
|
$.getJSON('pretheme?f=&theme=' + theme,function(data) {
|
|
|
|
$('#theme-preview').html('<div id="theme-desc">' + data.desc + '</div><div id="theme-version">' + data.version + '</div><div id="theme-credits">' + data.credits + '</div>');
|
2012-07-24 11:16:51 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|