Skip to content

Commit

Permalink
fixes #333
Browse files Browse the repository at this point in the history
  • Loading branch information
henriyli committed Oct 29, 2015
1 parent 8f886bd commit f8301a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resource/js/docready.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ $(function() { // DOCUMENT READY
success : function(data) {
$content.empty();
var response = $('.content', data).html();
if (window.history.pushState) { window.history.pushState({url: targetUrl + '&' + parameters}, '', targetUrl); }
if (window.history.pushState) { window.history.pushState({url: targetUrl + '&' + parameters}, '', targetUrl + '&' + parameters); }
$content.append(response);
updateTitle(data);
updateTopbarLang(data);
Expand Down

0 comments on commit f8301a2

Please sign in to comment.