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

Current column overlapping on previous column in windows 8 IE 11 #321

Open
Sampathmattapalli opened this issue Nov 20, 2013 · 2 comments
Open

Comments

@Sampathmattapalli
Copy link

When i trigger to next column, previous column not scrolling to hide & next column overlapping into that. Find the attachment you can get more clarity.
image001

@styks1987
Copy link

I am having the same issue
overlap

@tadejs
Copy link

tadejs commented Jan 9, 2014

Hi, it seems that IE11 has a new user agent, which doesn't contain 'msie'. Go figure.

My fix was changing the IE detection code so that it doesn't just look for 'msie', but also checks for Trident, when the appName is Netscape:

[around line 133 in capabilities.js]

else if (/msie/.test(capabilities.ua_) ||
    ("Netscape" == window.navigator.appName && /trident/i.test(capabilities.ua_))) {
  return 'msie';
}

Also, if you're testing for IE, I strongly recommend including the meta tag that forces standard-compliant
rendering, since it's really easy to trigger IE going into quirksmode - this is what solved most of my IE mobile bugs anyway.

davidjonas added a commit to davidjonas/treesaver that referenced this issue May 28, 2014
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

3 participants