(controllerArray)
| 1396 | } |
| 1397 | |
| 1398 | function updateDisplays(controllerArray) { |
| 1399 | if (controllerArray.length !== 0) { |
| 1400 | requestAnimationFrame.call(window, function() { |
| 1401 | updateDisplays(controllerArray); |
| 1402 | }); |
| 1403 | } |
| 1404 | |
| 1405 | common.each(controllerArray, function(c) { |
| 1406 | c.updateDisplay(); |
| 1407 | }); |
| 1408 | } |
| 1409 | |
| 1410 | export default GUI; |
no test coverage detected
searching dependent graphs…