jquery-cluetip
jquery-cluetip copied to clipboard
hides entire document when splitTitle and not explicit hideLocal (Chrome and IE)
I am using 1.0.7, line 79 looks like this: if (opts.local && opts.hideLocal) { $(tipAttribute + ':first').hide(); } The tipAttribute is blank and thus hides entire document when rel attribute is not set. I fixed it like this: if (opts.local && opts.hideLocal && tipAttribute != '') { $(tipAttribute + ':first').hide(); } Firefox works fine, and I saw the error in IE and Chrome.
thanks a lot for that! I'm currently overhauling the plugin (slowly) and will roll your change into it.