Closed a761208 closed 7 years ago
Uncaught TypeError: Cannot read property 'push' of undefined at jquery.pjax.js:981 at jquery.pjax.js:991
L981:$.event.props.push('state')
$.event.props.push('state')
Fixed with these:
if ( $.event.props && $.inArray('state', $.event.props) < 0 ) { $.event.props.push('state'); } else if ( ! ('state' in $.Event.prototype) ) { $.event.addProp('state'); }
could you please make a pull request from your fix?
Uncaught TypeError: Cannot read property 'push' of undefined at jquery.pjax.js:981 at jquery.pjax.js:991
L981:
$.event.props.push('state')
Fixed with these: