mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-09 15:35:47 +01:00
posts on user account page scroll to the post now
This commit is contained in:
@@ -70,7 +70,6 @@ var ajaxify = {};
|
|||||||
app.process_page();
|
app.process_page();
|
||||||
|
|
||||||
jQuery('#content, #footer').stop(true, true).fadeIn(200, function() {
|
jQuery('#content, #footer').stop(true, true).fadeIn(200, function() {
|
||||||
console.log('done loading');
|
|
||||||
if(window.location.hash)
|
if(window.location.hash)
|
||||||
hash = window.location.hash;
|
hash = window.location.hash;
|
||||||
if(hash)
|
if(hash)
|
||||||
@@ -93,6 +92,9 @@ var ajaxify = {};
|
|||||||
// Enhancing all anchors to ajaxify...
|
// Enhancing all anchors to ajaxify...
|
||||||
$(document.body).on('click', 'a', function(e) {
|
$(document.body).on('click', 'a', function(e) {
|
||||||
if (this.href == window.location.href + "#") return;
|
if (this.href == window.location.href + "#") return;
|
||||||
|
if(this.href.slice(-1) === "#") return;
|
||||||
|
|
||||||
|
|
||||||
var url = this.href.replace(rootUrl +'/', '');
|
var url = this.href.replace(rootUrl +'/', '');
|
||||||
|
|
||||||
if (this.target !== '') return;
|
if (this.target !== '') return;
|
||||||
|
|||||||
@@ -86,7 +86,7 @@
|
|||||||
<div class="span6 user-recent-posts">
|
<div class="span6 user-recent-posts">
|
||||||
<h4>recent posts </h4>
|
<h4>recent posts </h4>
|
||||||
<!-- BEGIN posts -->
|
<!-- 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>{posts.content}</span>
|
||||||
<span class="pull-right">{posts.relativeTime} ago</span>
|
<span class="pull-right">{posts.relativeTime} ago</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user