We were running into an issue where our pages were reloading. This occurred when using the following patch which brings in jquery.qtip-1.0.0-rc3.js:
http://drupal.org/files/1977018-d7-2.patch
At the following line in qtip checks if content.url is false, but we were seeing it be set as undefined, and because of this the .loadContent call would force the current page to reload.
https://github.com/Craga89/qTip1/blob/master/1.0.0-rc3/jquery.qtip-1.0.0...
if(self.options.content.url !== false)
{
url = self.options.content.url;
data = self.options.content.data;
method = self.options.content.method || 'get';
self.loadContent(url, data, method);
};
This patch fixes the issue by setting content.url to be false when the qtip is being initial constructed.
Comments
Comment #2
gmercer commented