Christian Aarfing

Results 5 comments of Christian Aarfing

My 2 cents. We use buttons in Knobs for a wide array of things. From triggering animations, clearing localstorage and resetting components, to pulling data from different environments. Not sure...

Ok, so I did some investigating and made it work. The problem is that while IE9 understands 'transform' as a CSS property, in JavaScript it needs the 'ms'-prefix like so:...

Actually IE9 needs a prefix on the CSS property as well, so a simple verbose proof of concept would be: var transformPrefix = "webkitTransform" in testElement.style ? "webkitTransform" : "transform";...

Works great, except a common scenario would be using Swipe for a carousel of teaser-stories and you'ld want to be able to have a link around each image in Swipe....

Good job. Was hoping a fix was one the way for this issue :)