On line 70 of the qtip.module file:
drupal_add_js('//cdn.jsdelivr.net/imagesloaded/' . QTIP_RECOMMENDED_IMAGESLOADED_VERSION . '/imagesloaded.' . ($settings['qtip_cdn_compression'] == 'min' ? '.min' : '') . '.js', 'external');
The period needs to be removed from '.js', as it causes a 'file not found' when retrieving the imageloaded file from jsdelivr.net
drupal_add_js('//cdn.jsdelivr.net/imagesloaded/' . QTIP_RECOMMENDED_IMAGESLOADED_VERSION . '/imagesloaded.' . ($settings['qtip_cdn_compression'] == 'min' ? '.min' : '') . 'js', 'external');
Comments
Comment #1
sheldonkemper commentedComment #2
sheldonkemper commentedComment #4
bocaj commentedThis should be fixed in the latest dev release. Please check it out!
I had to use the pkgd file as it contains eventEmitter.js - see https://github.com/desandro/imagesloaded/issues/124