The description that shows up in the Javascript error console is:
Uncaught TypeError: Cannot read property 'original' of null
Various patches have been suggested here.
I've found this patch to work well:
if (typeof contentOrig == 'object') {To this:
if (typeof contentOrig == 'object' && contentOrig !== null) {