fgnass / spin.js

A spinning activity indicator
http://spin.js.org
MIT License
9.3k stars 1.02k forks source link

Scale not working correctly in IE8 #315

Closed Drumstix42 closed 6 years ago

Drumstix42 commented 8 years ago

In IE8, the the "Scale" option is not working correctly (VML). It ends up slightly rotating each bar when you scale it. The default scale of "1" works as expected.

You can test this by visiting http://fgnass.github.io/spin.js/ on an IE8 VM.

The problem seems to exist @ line 305: , s = o.scale * 2 * r

Changing it to not include scale for "s" seems to fix the problem: , s = 2 * r

theodorejb commented 6 years ago

Closing since IE8 is no longer supported.