Was having a really strange problem today; getting qtip (1.0.0-rc3) and fullcalendar (1.4.5) to play nice. No matter what, it was erroring on line 139:
$(this).data('qtip').current = $(this).data('qtip').interfaces.lengthThankfully the intertubes had a very helpful post; changing line 134:
if(typeof $(this).data('qtip') == 'object')to:
if(typeof $(this).data('qtip') == 'object' && $(this).data('qtip') !== null)made it all happy. Good coding practice FTW…



Thank you, i think i’ll go crazy with this bug! =)
You’re a legend… thanks for that.