The responsive lightbox plugin is crashing functionality in Real Media Libary.
The admin-folders.js is being triggered when attaching an image to a folder.
The line 162 is failing for ( i = 0; i < selected.length; i++ ) { because the selected here is undefined. I have temporary mittigated this issue, by emracing the for loop with a test, – testing for undefined.
if (selected !== undefined) {
for ( i = 0; i < selected.length; i++ ) {
tags.push( selected[i].id );
}
}
I hope you can make a fix for this in future releases. The error is easy reproducable in both PC and Mac environments.