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.

hookImports3.js 360B

1234567891011121314151617
  1. /*
  2. import { MiddlewareRegistry } from '../../react/features/base/redux';
  3. MiddlewareRegistry.register(store => next => action => {
  4. if (window.dev_middleware_listner_sync3){
  5. window.dev_middleware_listner_sync3({store,next,action,that:this})
  6. }
  7. // setTimeout(window.dev_middleware_listner,1,{store,next,action,that:this})
  8. return next(action);
  9. });
  10. */