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.

hookImports2.js 361B

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