Merge pull request #4430 from RaceProUK/master

Allow for a little scrolling before dismissing bookmark alert
v1.18.x
Barış Soner Uşaklı 9 years ago
commit a2e5e7d9d3

@ -221,7 +221,9 @@ define('forum/topic', [
} else { } else {
span.html('').hide(); span.html('').hide();
} }
app.removeAlert('bookmark'); if ($(window).scrollTop() > 300) {
app.removeAlert('bookmark');
}
} }
Topic.calculateIndex = function(index, elementCount) { Topic.calculateIndex = function(index, elementCount) {

Loading…
Cancel
Save