aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/curCSS.js
blob: 111285b2eaec83238311d7a759cd06d6197d0550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
define( [
	"../core",
	"../core/isAttached",
	"./var/getStyles"
], function( jQuery, isAttached, rboxStyle, getStyles ) {

"use strict";

function curCSS( elem, name, computed ) {
	var ret;

	computed = computed || getStyles( elem );

	// getPropertyValue is needed for `.css('--customProperty')` (gh-3144)
	if ( computed ) {
		ret = computed.getPropertyValue( name ) || computed[ name ];

		if ( ret === "" && !isAttached( elem ) ) {
			ret = jQuery.style( elem, name );
		}
	}

	return ret !== undefined ?

		// Support: IE <=9 - 11+
		// IE returns zIndex value as an integer.
		ret + "" :
		ret;
}

return curCSS;
} );