Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility with previous versions #7

Open
loniszczuk opened this issue Jul 12, 2011 · 3 comments
Open

Compatibility with previous versions #7

loniszczuk opened this issue Jul 12, 2011 · 3 comments

Comments

@loniszczuk
Copy link

I had to change the code

return regulars.append(function(i, h) {
return bolds[i] || "";
});

by

return $.each(regulars, function(index, value) {
$(value).append(bolds[index] || "");
});

to make it compatible with jquery 1.3.2
If there is no other problem, we can change it in master branch.

@dbuthay
Copy link
Member

dbuthay commented Jul 12, 2011

Do tests pass using jquery 1.3.2 ?

@loniszczuk
Copy link
Author

yes, they do.
with jquery 1.3.2 and jquery-ui 1.8.x, tests pass.

@dbuthay
Copy link
Member

dbuthay commented Jul 13, 2011

Cool!

Merge it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants