Open liccy-fuentes opened 11 years ago
The plugin may work with jquery 1.9+. But as nobody really maintains it anymore, the bundled jquery file hasn't been updated for a long time (as the project itself).
you just have to add:
jQuery.browser = {}; jQuery.browser.mozilla = /mozilla/.test(navigator.userAgent.toLowerCase()) && !/webkit/.test(navigator.userAgent.toLowerCase()); jQuery.browser.webkit = /webkit/.test(navigator.userAgent.toLowerCase()); jQuery.browser.opera = /opera/.test(navigator.userAgent.toLowerCase()); jQuery.browser.msie = /msie/.test(navigator.userAgent.toLowerCase());
after the function call and it works just fine.
the solution not work in branch. Can you give me more info as this please? I need use jquery 1.9
I cannot remember the exact fix, but if you trace the error, it is relatively easy to fix (maybe 3 lines of code) and then it will work.
Brian
From: Imanol Alvarez Perez [mailto:notifications@github.com] Sent: Tuesday, February 04, 2014 7:17 AM To: themouette/jquery-week-calendar Cc: Brian Ashcroft Subject: Re: [jquery-week-calendar] Can get it to work with jquery 1.9+? (#178)
the solution not work in branch. Can you give me more info as this please? I need use jquery 1.9
— Reply to this email directly or view it on GitHubhttps://github.com/themouette/jquery-week-calendar/issues/178#issuecomment-34062697.
Why? Is there any reason why the jQuery file was never updated to the laters version?
Is there any work around?