Fixes broken IE11 slider in ImageCropper

This commit is contained in:
perploug
2014-03-17 20:01:39 +01:00
parent c9d12f7dc5
commit 3cabec84d4

View File

@@ -238,7 +238,16 @@ angular.module("umbraco.directives")
}
});
//ie hack
if(window.navigator.userAgent.indexOf("MSIE ")){
var ranger = element.find("input");
ranger.bind("change",function(){
scope.$apply(function(){
scope.dimensions.scale.current = ranger.val();
});
});
}
//// INIT /////
$image.load(function(){
$timeout(function(){