(arr, cb)
| 2814 | } |
| 2815 | |
| 2816 | function findIndexOf(arr, cb) { |
| 2817 | var idx = -1; |
| 2818 | arr.some(function (d, i) { |
| 2819 | if (cb(d, i)) { |
| 2820 | idx = i; |
| 2821 | return true; |
| 2822 | } |
| 2823 | }); |
| 2824 | return idx; |
| 2825 | } |
| 2826 | /** |
| 2827 | * Proper state managment for containers and the modals in those containers. |
| 2828 | * |
no test coverage detected
searching dependent graphs…