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

two bug #13

Open
qubaomingg opened this issue Mar 19, 2014 · 3 comments
Open

two bug #13

qubaomingg opened this issue Mar 19, 2014 · 3 comments

Comments

@qubaomingg
Copy link

i have meet two bugs:

  1. $.browser.msie is undefined.
    this is because of jquery don't support msie from 1.9
    and i fixed.
  2. Uncaught Error: Syntax error, unrecognized expression: td[date=19 Mar 2014]

have no idea..

@mtyang
Copy link

mtyang commented Jul 8, 2014

me too..

@coax
Copy link

coax commented Nov 25, 2014

$.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

@maxweb4u
Copy link

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();

replace it with:

return date.getDate() + "-" + date.getMonth() + "-" + date.getFullYear();

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

4 participants