- changes per PR conversation

v1.18.x
akhoury 11 years ago
parent 0070e1158e
commit 2209a55afc

@ -125,6 +125,7 @@ var ajaxify = {};
if (!renderedWidgets.length) { if (!renderedWidgets.length) {
$('body [no-widget-class]').each(function() { $('body [no-widget-class]').each(function() {
var $this = $(this); var $this = $(this);
$this.removeClass();
$this.addClass($this.attr('no-widget-class')); $this.addClass($this.attr('no-widget-class'));
}); });
} }

@ -1034,11 +1034,6 @@ define(['composer', 'forum/pagination'], function(composer, pagination) {
history.replaceState({ history.replaceState({
url: window.location.pathname.slice(1) + '#' + el.attr('data-pid') url: window.location.pathname.slice(1) + '#' + el.attr('data-pid')
}, null, newUrl); }, null, newUrl);
} else {
// this is very slugish on IE8/9, it causes the browser to adjust its scroll on its own,
// it can be fixed, but too much work for a very little return just so ie8/9 users can have the hash updated
// commenting it out, sorry
// location.hash = '#' + el.attr('data-pid');
} }
currentUrl = newUrl; currentUrl = newUrl;
} }

Loading…
Cancel
Save