Skip to content

Commit

Permalink
fixed capitalization of 'webkitTransform' (Leaflet#6290)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuckergordon authored and IvanSanchez committed Aug 16, 2018
1 parent 3bc0066 commit 20ae7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dom/DomUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import * as Browser from '../core/Browser';
// @property TRANSFORM: String
// Vendor-prefixed transform style name (e.g. `'webkitTransform'` for WebKit).
export var TRANSFORM = testProp(
['transform', 'WebkitTransform', 'OTransform', 'MozTransform', 'msTransform']);
['transform', 'webkitTransform', 'OTransform', 'MozTransform', 'msTransform']);

// webkitTransition comes first because some browser versions that drop vendor prefix don't do
// the same for the transitionend event, in particular the Android 4.1 stock browser
Expand Down

0 comments on commit 20ae7c0

Please sign in to comment.