Export to GitHub

curvycorners - issue #119

IE11-'Scanstyles does nothing in Webkit/Firefox/Opera' alert appears


Posted on Sep 18, 2013 by Massive Cat

What steps will reproduce the problem? 1. Load in IE11 2. 3.

What is the expected output? What do you see instead? The alert should not come

What version of the product are you using? On what operating system? Windows 7 Curvycorner 2.1

Please provide any additional information below. in the line this.isIE = agent.indexOf("msie") > -1; agent returns no msie in response for IE11.

Comment #1

Posted on Nov 21, 2013 by Massive Hippo

One way I solved it, was to add this line just under the "msie" check: this.isIE11=agent.indexOf("trident/7.0")>-1; and then just before the: else curvyCorners.alert('Scanstyles does nothing in Webkit/Firefox/Opera'); add this: else if (curvyBrowser.isIE11) { /do nothing/ }

This of course isn't the best solution (what happens when IE12/Trident 8.0 is released), but seeing as this script is made to work in older browsers (and typically older IEs), then hopefully this script will be gone by then, as a lot of people should've moved on to newer and better browsers. If you are only trying to "hit" older IE, you could just use a conditional comment.

Comment #2

Posted on Dec 11, 2013 by Massive Rabbit

Scanstyle does nothing in Webkit/Firefox/Opera.

I had the same problem and the only thing I did was click on the Compatability Vieuw Settings in IE11 which solved the problem. No anoing popup of Scanstyle anymore.

Comment #3

Posted on Dec 17, 2013 by Helpful Giraffe

I found on another site that it may have to do with CurvyCorners script. In which there is reference to a line of code within the curvycorners.src.js or curvycorners.js that states else curvyCorners.alert('Scanstyles does nothing in Webkit/Firefox/Opera'); Removing this may fix your problem.

Comment #4

Posted on Jun 9, 2014 by Quick Monkey

Thank you Seanpmcc... right on the money....

Status: New

Labels:
Type-Defect Priority-Medium