Remove unnecessary onblur call
Right now, checker is being attached to both onblur and onchange. The result is when the user changes input, and that input loses focus, the checker is being fired twice. This can cause issues on non-trivial field changes (such as validating a groovy script). If there is no change, the checker is still called once due to the onblur. The checker should only be called if the input is changed.
Loading
Please register or sign in to comment