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 have meet two bugs:
have no idea..
The text was updated successfully, but these errors were encountered:
me too..
Sorry, something went wrong.
$.browser property is removed in jQuery 1.9+ (http://api.jquery.com/jquery.browser/)
Add this small plugin to get rid of the error: https://github.com/gabceb/jquery-browser-plugin
Regarding 2 mistake:
you need to change next lines:
line 207:
if (matches = string.match(/^(\d{1,2}) ([^\s]+) (\d{4,4})$/)) {
replace it with:
if (matches = string.match(/^(\d{1,2}) (\d{1,2}) (\d{4,4})$/)) {
and line 215:
return date.getDate() + " " + this.short_month_names[date.getMonth()] + " " + date.getFullYear();
return date.getDate() + "-" + date.getMonth() + "-" + date.getFullYear();
No branches or pull requests
i have meet two bugs:
this is because of jquery don't support msie from 1.9
and i fixed.
have no idea..
The text was updated successfully, but these errors were encountered: