Closed edstuckey closed 8 years ago
I am getting an error when using conditional rendering where event listeners are trying to be added to a null element.
my fix is a change to the file lib/Index.js line 94. Wrap the event listeners for 'click' and 'loaded' in an if(el)
Thanks for reporting, will take a look at it.
if (el) { is there now
if (el) {
I am getting an error when using conditional rendering where event listeners are trying to be added to a null element.
my fix is a change to the file lib/Index.js line 94. Wrap the event listeners for 'click' and 'loaded' in an if(el)