* Return `true` if the given DOM element has an AutoNumeric object that manages it. * This function also accepts a selector string. * * @param {HTMLElement|string} domElementOrSelector Accepts either directly a DOM element to test, or a string selector (that will return one and only o
(domElementOrSelector)
| 4664 | * @returns {boolean} |
| 4665 | */ |
| 4666 | static isManagedByAutoNumeric(domElementOrSelector) { //FIXME test this |
| 4667 | return this._isInGlobalList(AutoNumericHelper.domElement(domElementOrSelector)); |
| 4668 | } |
| 4669 | |
| 4670 | /** |
| 4671 | * Return the AutoNumeric object that manages the given DOM element. |
no test coverage detected