* Remove the given object from the global AutoNumeric element list. * * @param {AutoNumeric} autoNumericObject * @private
(autoNumericObject)
| 3645 | * @private |
| 3646 | */ |
| 3647 | static _removeFromGlobalList(autoNumericObject) { //FIXME test this |
| 3648 | if (this._doesGlobalListExists()) { |
| 3649 | window[this.autoNumericGlobalListName].delete(autoNumericObject.node()); |
| 3650 | } |
| 3651 | } |
| 3652 | |
| 3653 | /** |
| 3654 | * Return the value associated to the key `domElement` passed as a parameter. |
no test coverage detected