(context, fn)
| 15533 | |
| 15534 | //Faster, more basic than angular.bind http://jsperf.com/angular-bind-vs-custom-vs-native |
| 15535 | function simpleBind(context, fn) { |
| 15536 | return function(value) { |
| 15537 | fn.call(context, value); |
| 15538 | }; |
| 15539 | } |
| 15540 | |
| 15541 | function processQueue(state) { |
| 15542 | var fn, deferred, pending; |