* Determines if the browser is Internet Explorer * @method * @memberof Popper.Utils * @param {Number} version to check * @returns {Boolean} isIE
(version)
| 3148 | */ |
| 3149 | |
| 3150 | function isIE(version) { |
| 3151 | if (version === 11) { |
| 3152 | return isIE11; |
| 3153 | } |
| 3154 | |
| 3155 | if (version === 10) { |
| 3156 | return isIE10; |
| 3157 | } |
| 3158 | |
| 3159 | return isIE11 || isIE10; |
| 3160 | } |
| 3161 | /** |
| 3162 | * Returns the offset parent of the given element |
| 3163 | * @method |
no outgoing calls
no test coverage detected
searching dependent graphs…