remove deprecated imageSmoothingEnabled prefixes

This commit is contained in:
Baltazar Gomez 2019-11-18 16:21:07 -07:00 committed by GitHub
parent 68e9efebe6
commit 70b2834839
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -633,8 +633,6 @@ $.Drawer.prototype = {
// private // private
_updateImageSmoothingEnabled: function(context){ _updateImageSmoothingEnabled: function(context){
context.mozImageSmoothingEnabled = this._imageSmoothingEnabled;
context.webkitImageSmoothingEnabled = this._imageSmoothingEnabled;
context.msImageSmoothingEnabled = this._imageSmoothingEnabled; context.msImageSmoothingEnabled = this._imageSmoothingEnabled;
context.imageSmoothingEnabled = this._imageSmoothingEnabled; context.imageSmoothingEnabled = this._imageSmoothingEnabled;
}, },