* Check if the given DOM element is in the global AutoNumeric element list. * * @param {HTMLElement|HTMLInputElement} domElement * @returns {boolean} * @private
(domElement)
| 3674 | * @private |
| 3675 | */ |
| 3676 | static _isInGlobalList(domElement) { //FIXME test this |
| 3677 | if (!this._doesGlobalListExists()) { |
| 3678 | return false; |
| 3679 | } |
| 3680 | |
| 3681 | return window[this.autoNumericGlobalListName].has(domElement); |
| 3682 | } |
| 3683 | |
| 3684 | /** |
| 3685 | * Create a `Map` that will store all the autoNumeric elements that are initialized from this current element. |