ginader / HTML5-placeholder-polyfill

Small and robust polyfill for the HTML5 placeholder attribut.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unused variable in startEmptiedCheckChange

GaryJones opened this issue · comments

function startEmptiedCheckChange(input,options){
    var val = input.val();
    (function checkloop(){
        animId = requestAnimationFrame(checkloop);
        showPlaceholderIfEmpty(input,options);
    }());
}

That val variable is defined, but never used. It can be removed.