Skip to content

Commit 38fb420

Browse files
committed
CanvasInterpolation has updated the order of the CSS properties so that crisp-edges comes after the browser prefix versions.
1 parent 342ad98 commit 38fb420

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/display/canvas/CanvasInterpolation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var CanvasInterpolation = {
2222
*/
2323
setCrisp: function (canvas)
2424
{
25-
var types = [ 'optimizeSpeed', 'crisp-edges', '-moz-crisp-edges', '-webkit-optimize-contrast', 'optimize-contrast', 'pixelated' ];
25+
var types = [ 'optimizeSpeed', '-moz-crisp-edges', '-o-crisp-edges', '-webkit-optimize-contrast', 'optimize-contrast', 'crisp-edges', 'pixelated' ];
2626

2727
types.forEach(function (type)
2828
{

0 commit comments

Comments
 (0)