mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-08 14:23:30 +00:00
11 lines
354 B
JavaScript
11 lines
354 B
JavaScript
// testing for placeholder attribute in inputs and textareas
|
|
// re-using Modernizr.input if available
|
|
|
|
Modernizr.addTest('placeholder', function(){
|
|
|
|
return !!( 'placeholder' in ( Modernizr.input || document.createElement('input') ) &&
|
|
'placeholder' in ( Modernizr.textarea || document.createElement('textarea') )
|
|
);
|
|
|
|
});
|