Open
Description
Here's a fiddle with the problem, pasted here for completeness sake:
var gui = new dat.GUI( );
var testObj = { 'options': [] }
// Default can't be deduced from testObj.options as with other values?
gui.add( testObj, 'options', [] ).listen();
testObj.options.push( 'someArg' ); // Options doesn't update
for (var i in gui.__controllers) // Neither does this
gui.__controllers[i].updateDisplay();