Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

fix(angular): Allow widgets to be styled in IE8 and below #616

Closed
wants to merge 3 commits into from
Closed

fix(angular): Allow widgets to be styled in IE8 and below #616

wants to merge 3 commits into from

Conversation

dmanek
Copy link
Contributor

@dmanek dmanek commented Oct 22, 2011

Closes #584

@dmanek
Copy link
Contributor Author

dmanek commented Oct 22, 2011

Made all changes as above. Added issue-584.html to this pull request.

@vojtajina
Copy link
Contributor

Btw, why did you decided not to add unit test for this ? Any problems with the approach we discussed ?

@dmanek
Copy link
Contributor Author

dmanek commented Oct 24, 2011

As per our conversation, added the check for "@" in the element name. Also, fixed typo (issue-352.html -> issue-584.html).

*/
function shivForIE(elementName) {
elementName = lowercase(elementName);
if (msie < 9 && element.indexOf('@') == -1)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be elementName.charAt(0) !== '@'

I'll fix that during squash

@IgorMinar
Copy link
Contributor

one small issue. otherwise LGTM. I'll fix it and squash it.

@IgorMinar
Copy link
Contributor

landed as 163c799

thanks!

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

Successfully merging this pull request may close these issues.

make all widgets stylable in IE<9
3 participants