We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
Do tests pass using jquery 1.3.2 ?
Sorry, something went wrong.
yes, they do. with jquery 1.3.2 and jquery-ui 1.8.x, tests pass.
Cool!
Merge it!
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: