react_ujs/src/events/pjax.js
module.exports = {
// pjax support
setup: function(ujs) {
ujs.handleEvent('ready', ujs.handleMount);
ujs.handleEvent('pjax:end', ujs.handleMount);
ujs.handleEvent('pjax:beforeReplace', ujs.handleUnmount);
},
teardown: function(ujs) {
ujs.removeEvent('ready', ujs.handleMount);
ujs.removeEvent('pjax:end', ujs.handleMount);
ujs.removeEvent('pjax:beforeReplace', ujs.handleUnmount);
},
}