diff --git a/public/css/style.less b/public/css/style.less
index 0850e2b562..13c2f43c56 100644
--- a/public/css/style.less
+++ b/public/css/style.less
@@ -260,3 +260,16 @@ footer.footer {
}
}
}
+
+
+#thread_active_users {
+ float: right;
+ color: rgb(153,153,153);
+
+}
+
+#thread_active_users strong {
+ color: rgb(100,100,100);
+ font-weight: 600;
+ cursor: pointer;
+}
\ No newline at end of file
diff --git a/public/src/ajaxify.js b/public/src/ajaxify.js
index 90f13142fa..c4aea9a599 100644
--- a/public/src/ajaxify.js
+++ b/public/src/ajaxify.js
@@ -26,10 +26,7 @@ var ajaxify = {};
ajaxify.go = function(url, callback) {
// leave room and join global
- if (current_room != 'global') {
- socket.emit('event:enter_room', 'global');
- current_room = 'global';
- }
+ app.enter_room('global');
var url = url.replace(/\/$/, "");
var tpl_url = (url === '' || url === '/') ? 'home' : url.split('/')[0];
@@ -37,19 +34,22 @@ var ajaxify = {};
if (templates[tpl_url]) {
window.history.pushState({}, url, "/" + url);
- jQuery('#content, #footer').fadeOut(100);
-
- load_template(function() {
- exec_body_scripts(content);
-
- ajaxify.enable();
- if (callback) {
- callback();
- }
-
- jQuery('#content, #footer').fadeIn(200);
+ jQuery('#footer').fadeOut(100);
+ jQuery('#content').fadeOut(100, function() {
+ load_template(function() {
+
+ exec_body_scripts(content);
+
+ ajaxify.enable();
+ if (callback) {
+ callback();
+ }
+
+ jQuery('#content, #footer').fadeIn(250);
+ });
});
+
return true;
}
@@ -62,7 +62,6 @@ var ajaxify = {};
ajaxify.onclick = function(ev) {
if (this.href == window.location.href + "#") return;
- console.log(this.href);
var url = this.href.replace(rootUrl +'/', '');
if (ajaxify.go(url)) {
diff --git a/public/src/app.js b/public/src/app.js
index 68f4894a43..90d8c8fbc2 100644
--- a/public/src/app.js
+++ b/public/src/app.js
@@ -1,7 +1,6 @@
var socket,
config,
app = {},
- current_room,
API_URL = null;
// todo: cleanup,etc
@@ -172,11 +171,21 @@ var socket,
jQuery(post_window).slideToggle(250);
};
+
+ app.current_room = null;
+ app.enter_room = function(room) {
+ if (app.current_room === room) return;
+
+ socket.emit('event:enter_room', {
+ 'enter': room,
+ 'leave': app.current_room
+ });
+
+ app.current_room = room;
+ };
+
jQuery('document').ready(function() {
- if (current_room != 'global') {
- socket.emit('event:enter_room', 'global');
- current_room = 'global';
- }
+ app.enter_room('global');
// On menu click, change "active" state
diff --git a/public/src/templates.js b/public/src/templates.js
index 8ab24d7fc9..ee900c66c5 100644
--- a/public/src/templates.js
+++ b/public/src/templates.js
@@ -49,7 +49,7 @@ var templates = {};
function init() {
loadTemplates([
- 'header', 'footer', 'register', 'home', 'topic',
+ 'header', 'footer', 'register', 'home', 'topic','account',
'login', 'reset', 'reset_code', 'account',
'confirm',
'emails/reset', 'emails/reset_plaintext', 'emails/email_confirm', 'emails/email_confirm_plaintext'
diff --git a/public/templates/account.tpl b/public/templates/account.tpl
index faee1a8f33..2b1ce5b327 100644
--- a/public/templates/account.tpl
+++ b/public/templates/account.tpl
@@ -18,6 +18,10 @@
Member for
{user.joindate}
+
+ Reputation
+ {user.reputation}
+
diff --git a/public/templates/footer.tpl b/public/templates/footer.tpl
index f3719254f7..e6ca609cf3 100644
--- a/public/templates/footer.tpl
+++ b/public/templates/footer.tpl
@@ -43,8 +43,11 @@
socket.on('api:user.active.get_record', function(data) {
active_record.innerHTML = "most users ever online was " + data.record + " on " + (new Date(parseInt(data.timestamp,10))).toUTCString() + "";
});
- socket.emit('api:user.get', { fields: ['username', 'picture'] });
- socket.once('api:user.get', function(data) {
+
+ socket.emit('api:updateHeader', { fields: ['username', 'picture'] });
+
+ socket.once('api:updateHeader', function(data) {
+
if (data.uid > 0) {
var gravatar = document.createElement('img'),
name = document.createElement('span')
@@ -53,7 +56,7 @@
logoutEl.innerHTML = 'Log out';
name.innerHTML = data['username'];
- gravatar.src = data['picture'];
+ gravatar.src = data['picture']+"?s=24";
user_label.innerHTML = '';
user_label.appendChild(gravatar);
diff --git a/public/templates/topic.tpl b/public/templates/topic.tpl
index 5bd8dc23f8..29628a6641 100644
--- a/public/templates/topic.tpl
+++ b/public/templates/topic.tpl
@@ -2,9 +2,8 @@