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

sheldonkemper’s picture

Issue summary: View changes
sheldonkemper’s picture

Issue summary: View changes

  • bocaj committed 736b51a on 7.x-2.x
    Issue #2444989 by sheldonkemper: 2444989
    
bocaj’s picture

Status: Active » Fixed

This 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

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.