aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/finalPropName.js
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2019-04-29 22:04:52 +0200
committerGitHub <noreply@github.com>2019-04-29 22:04:52 +0200
commit58f0c00bed695f934bb205c6115e5fe99dd5c27b (patch)
tree17bd1d5645fcaa3bfb6f7e0f2d08e1a8e423a801 /src/css/finalPropName.js
parent6f2fae7c410dcb5876814866a03fc819f0502290 (diff)
downloadjquery-58f0c00bed695f934bb205c6115e5fe99dd5c27b.tar.gz
jquery-58f0c00bed695f934bb205c6115e5fe99dd5c27b.zip
Core: Remove deprecated jQuery APIs
Fixes gh-4056 Closes gh-4364
Diffstat (limited to 'src/css/finalPropName.js')
-rw-r--r--src/css/finalPropName.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/css/finalPropName.js b/src/css/finalPropName.js
index 352d18a27..c290eb2b4 100644
--- a/src/css/finalPropName.js
+++ b/src/css/finalPropName.js
@@ -1,7 +1,6 @@
define( [
- "../var/document",
- "../core"
-], function( document, jQuery ) {
+ "../var/document"
+], function( document ) {
"use strict";
@@ -24,9 +23,9 @@ function vendorPropName( name ) {
}
}
-// Return a potentially-mapped jQuery.cssProps or vendor prefixed property
+// Return a potentially-mapped vendor prefixed property
function finalPropName( name ) {
- var final = jQuery.cssProps[ name ] || vendorProps[ name ];
+ var final = vendorProps[ name ];
if ( final ) {
return final;