posts on user account page scroll to the post now

v1.18.x
Baris Soner Usakli 12 years ago
parent 23fcdde25e
commit a5acf31fc6

@ -70,7 +70,6 @@ var ajaxify = {};
app.process_page();
jQuery('#content, #footer').stop(true, true).fadeIn(200, function() {
console.log('done loading');
if(window.location.hash)
hash = window.location.hash;
if(hash)
@ -93,6 +92,9 @@ var ajaxify = {};
// Enhancing all anchors to ajaxify...
$(document.body).on('click', 'a', function(e) {
if (this.href == window.location.href + "#") return;
if(this.href.slice(-1) === "#") return;
var url = this.href.replace(rootUrl +'/', '');
if (this.target !== '') return;

@ -6,7 +6,7 @@
user_label = document.getElementById('user_label'),
active_record = document.getElementById('active_record'),
right_menu = document.getElementById('right-menu');
socket.emit('user.count', {});
socket.on('user.count', function(data) {
num_users.innerHTML = "We currently have <b>" + data.count + "</b> registered users.";

@ -86,7 +86,7 @@
<div class="span6 user-recent-posts">
<h4>recent posts </h4>
<!-- BEGIN posts -->
<div class="topic-row img-polaroid clearfix" topic-url="topic/{posts.tid}/{posts.pid}">
<div class="topic-row img-polaroid clearfix" topic-url="topic/{posts.tid}/#{posts.pid}">
<span>{posts.content}</span>
<span class="pull-right">{posts.relativeTime} ago</span>
</div>

Loading…
Cancel
Save