').append( $("#nav-notifications-see-all").clone() ).html()); //outerHtml hack
var notifications_mark = unescape($('
').append( $("#nav-notifications-mark-all").clone() ).html()); //outerHtml hack
var notifications_empty = unescape($("#nav-notifications-menu").html());
-
+
/* nav update event */
$('nav').bind('nav-update', function(e,data){;
var invalid = $(data).find('invalid').text();
@@ -165,7 +164,7 @@
var home = $(data).find('home').text();
if(home == 0) { home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') }
$('#home-update').html(home);
-
+
var intro = $(data).find('intro').text();
if(intro == 0) { intro = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') }
$('#intro-update').html(intro);
@@ -173,7 +172,7 @@
var mail = $(data).find('mail').text();
if(mail == 0) { mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') }
$('#mail-update').html(mail);
-
+
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);
@@ -206,7 +205,7 @@
var eNotif = $(data).find('notif')
-
+
if (eNotif.children("note").length==0){
$("#nav-notifications-menu").html(notifications_empty);
} else {
@@ -244,7 +243,7 @@
});
}
}
-
+
});
notification_lastitem = notification_id;
localStorage.setItem("notification-lastitem", notification_lastitem)
@@ -267,7 +266,7 @@
}
if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') }
$('#notify-update').html(notif);
-
+
var eSysmsg = $(data).find('sysmsgs');
eSysmsg.children("notice").each(function(){
text = $(this).text();
@@ -277,10 +276,10 @@
text = $(this).text();
$.jGrowl(text, { sticky: false, theme: 'info', life: 5000 });
});
-
+
});
- NavUpdate();
+ NavUpdate();
// Allow folks to stop the ajax page updates with the pause/break key
$(document).keydown(function(event) {
if(event.keyCode == '8') {
@@ -306,8 +305,8 @@
}
}
});
-
-
+
+
});
function NavUpdate() {
@@ -318,8 +317,8 @@
$(data).find('result').each(function() {
// send nav-update event
$('nav').trigger('nav-update', this);
-
-
+
+
// start live update
if($('#live-network').length) { src = 'network'; liveUpdate(); }
@@ -330,19 +329,19 @@
/* if($('#live-display').length) {
if(liking) {
liking = 0;
- window.location.href=window.location.href
+ window.location.href=window.location.href
}
}*/
- if($('#live-photos').length) {
+ if($('#live-photos').length) {
if(liking) {
liking = 0;
- window.location.href=window.location.href
+ window.location.href=window.location.href
}
}
-
-
-
+
+
+
});
}) ;
}
@@ -432,8 +431,8 @@
});
$('#' + prev).after($(this));
}
- else {
- $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago'));
+ else {
+ $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago'));
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'));
@@ -443,7 +442,7 @@
$(this).attr('src',$(this).attr('dst'));
});
}
- prev = ident;
+ prev = ident;
});
*/
$('.like-rotator').hide();
@@ -467,10 +466,10 @@
$(node).removeClass("drop").addClass("drophide");
}
- // Since our ajax calls are asynchronous, we will give a few
- // seconds for the first ajax call (setting like/dislike), then
+ // Since our ajax calls are asynchronous, we will give a few
+ // seconds for the first ajax call (setting like/dislike), then
// run the updater to pick up any changes and display on the page.
- // The updater will turn any rotators off when it's done.
+ // The updater will turn any rotators off when it's done.
// 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
@@ -582,14 +581,14 @@
commentBusy = true;
$('body').css('cursor', 'wait');
$("#comment-preview-inp-" + id).val("0");
- $.post(
- "item",
- $("#comment-edit-form-" + id).serialize(),
+ $.post(
+ "item",
+ $("#comment-edit-form-" + id).serialize(),
function(data) {
if(data.success) {
$("#comment-edit-wrapper-" + id).hide();
$("#comment-edit-text-" + id).val('');
- var tarea = document.getElementById("comment-edit-text-" + id);
+ var tarea = document.getElementById("comment-edit-text-" + id);
if(tarea)
commentClose(tarea,id);
if(timer) clearTimeout(timer);
@@ -600,28 +599,27 @@
window.location.href=data.reload;
}
},
- "json"
- );
- return false;
+ "json"
+ );
+ return false;
}
function preview_comment(id) {
$("#comment-preview-inp-" + id).val("1");
$("#comment-edit-preview-" + id).show();
- $.post(
- "item",
- $("#comment-edit-form-" + id).serialize(),
+ $.post(
+ "item",
+ $("#comment-edit-form-" + id).serialize(),
function(data) {
if(data.preview) {
-
$("#comment-edit-preview-" + id).html(data.preview);
$("#comment-edit-preview-" + id + " a").click(function() { return false; });
}
},
- "json"
- );
- return true;
+ "json"
+ );
+ return true;
}
@@ -643,19 +641,19 @@
$("#jot-preview").val("1");
$("#jot-preview-content").show();
tinyMCE.triggerSave();
- $.post(
- "item",
+ $.post(
+ "item",
$("#profile-jot-form").serialize(),
function(data) {
- if(data.preview) {
+ if(data.preview) {
$("#jot-preview-content").html(data.preview);
$("#jot-preview-content" + " a").click(function() { return false; });
}
},
- "json"
- );
+ "json"
+ );
$("#jot-preview").val("0");
- return true;
+ return true;
}
@@ -663,38 +661,38 @@
// unpause auto reloads if they are currently stopped
totStopped = false;
stopped = false;
- $('#pause').html('');
+ $('#pause').html('');
}
-
- 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
get_baseurl() . '/photo/' . $rr['resource-id'] . '.' .$ext,
+ $a->get_baseurl() . '/photos/' . $a->user['nickname'] . '/image/' . $rr['resource-id'],
$filename_e,
$a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['loq'] . '.'. $ext
);
}
- $files = array_map("files1", $r);
+ $files = array_map("_map_files1", $r);
$tpl = get_markup_template($template_file);
@@ -102,7 +102,7 @@ function fbrowser_content($a){
intval(local_user())
);
- function files2($rr){ global $a;
+ function _map_files2($rr){ global $a;
list($m1,$m2) = explode("/",$rr['filetype']);
$filetype = ( (file_exists("images/icons/$m1.png"))?$m1:"zip");
@@ -115,8 +115,7 @@ function fbrowser_content($a){
return array( $a->get_baseurl() . '/attach/' . $rr['id'], $filename_e, $a->get_baseurl() . '/images/icons/16/' . $filetype . '.png');
}
- $files = array_map("files2", $files);
- //echo ""; var_dump($files); killme();
+ $files = array_map("_map_files2", $files);
$tpl = get_markup_template($template_file);
diff --git a/view/templates/jot-header.tpl b/view/templates/jot-header.tpl
index cb841c314d..647f261c45 100644
--- a/view/templates/jot-header.tpl
+++ b/view/templates/jot-header.tpl
@@ -74,7 +74,7 @@ function initEditor(cb){
}
else {
$('#profile-jot-desc').html(' ');
- }
+ }
//Character count
@@ -110,7 +110,7 @@ function initEditor(cb){
$("a#jot-perms-icon").colorbox({
'inline' : true,
'transition' : 'elastic'
- });
+ });
} else {
if (typeof cb!="undefined") cb();
}
@@ -127,20 +127,20 @@ function enableOnUser(){