Browse Source

auto commit

app
jfinn 3 years ago
parent
commit
c4fc8e15d0
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      mdev/hooks.native.js

+ 2
- 1
mdev/hooks.native.js View File

@@ -6,7 +6,8 @@ import { MiddlewareRegistry } from '../react/features/base/redux';
6 6
 
7 7
 MiddlewareRegistry.register(store => next => action => {
8 8
 	if (window.dev_middleware_listner){
9
-		setTimeout(window.dev_middleware_listner,1,{store,next,action,that:this})
9
+		// setTimeout(window.dev_middleware_listner,1,{store,next,action,that:this})
10
+		setTimeout(window.dev_middleware_listner.bind({info1:"dflt_that"},{store,next,action,that:this}),1)
10 11
 	}
11 12
 	return next(action);
12 13
 });

Loading…
Cancel
Save