No title, no dialog
Closed this issue · 1 comments
FaustXVI commented
Hi,
I encounter a issue on firefox v3.6.20 on ubuntu 10.10 :
When I add a easyconfirm on a element with no title, the plugin crash and no dialog is shown.
I simply fix the bug by changing this line :
if ($target.attr('title').length > 0)
by this one
if ($target.attr('title') != null && $target.attr('title').length > 0)
My best,
Deleted user commented
Thank you for your feedback and sorry for my late replay. I have implemented the fix as you suggested.