Last active
March 30, 2019 12:50
-
-
Save MasterHans/d3aeaa5cb3308214ae460b0e2f568661 to your computer and use it in GitHub Desktop.
1C Битрикс ошибка Ajax умного фильтра
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ОШИБКА | |
TypeError: window.History.pushState is not a function | |
Нужно сделать History с маленткой буквы!!! | |
JCSmartFilter.prototype.filterCatalog = function (url, set_disabled) | |
{ | |
if( window.History.enabled || window.history.pushState != null ){ | |
window.history.pushState( null, document.title, url ); | |
}else{ | |
location.href = url; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment