You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

middleware.web.js 469B

123456789101112
  1. import { MiddlewareRegistry } from '../base/redux';
  2. /**
  3. * Middleware which intercepts actions and updates the legacy component
  4. * {@code VideoLayout} as needed. The purpose of this middleware is to redux-ify
  5. * {@code VideoLayout} without having to simultaneously react-ifying it.
  6. *
  7. * @param {Store} store - The redux store.
  8. * @returns {Function}
  9. */
  10. // eslint-disable-next-line no-unused-vars
  11. MiddlewareRegistry.register(store => next => action => next(action));