Skip to content
This repository has been archived by the owner on Jan 29, 2018. It is now read-only.

Found and fixed a bug with IE9 #1

Open
ghiscoding opened this issue Mar 1, 2011 · 0 comments
Open

Found and fixed a bug with IE9 #1

ghiscoding opened this issue Mar 1, 2011 · 0 comments

Comments

@ghiscoding
Copy link

So I found a bug when using the new IE9 regular mode, which means using as well

Anyways the problem is with 1 line of code, needs to be replaced by 3 lines instead as IE9 doesn't like this:
var cell = $(''); // IE9 Bug, this won't work

correction of the code is this (now fully working with IE9):
var cell = $('');
cell.attr('colspan', '7');
cell.addClass('title');

Since I really like this calendar-view, I spent couple of hours trying to find the problem. And so I'm posting the solution with hope it helps everyone!!!
Enjoy :)

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

No branches or pull requests

1 participant