Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Re: Conflict with Oracle Apex when showing "Edit links"

Home Forums Older releases 0.9.x Conflict with Oracle Apex when showing "Edit links" Re: Conflict with Oracle Apex when showing "Edit links"

#1549
admin
Keymaster

Thanks, I am now able to reproduce the issue!

To fix this you would need a small modification of the default source – you need to find/replace the following:

prevAll('a')

with this:

prevAll('a').eq(-1)

If you use the minified version, just use double quotes prevAll("a").

I actually think this is a good generic tweak so I will make sure it’s added in future versions so you don’t need to worry that you could lose the fix if you decide to upgrade the script in the future.

As for posting HTML code samples, just replace the opening <'s with <'s for now. I will surely fix this when I have a bit more time..

Cheers!