jquery-cluetip icon indicating copy to clipboard operation
jquery-cluetip copied to clipboard

hides entire document when splitTitle and not explicit hideLocal (Chrome and IE)

Open carokann opened this issue 14 years ago • 1 comments

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.

carokann avatar Jun 25 '10 21:06 carokann

thanks a lot for that! I'm currently overhauling the plugin (slowly) and will roll your change into it.

kswedberg avatar Jul 14 '10 02:07 kswedberg