Update from upstream

Change-Id: I58496182f755e152cea0ce8b34277a413385a6e5
This commit is contained in:
Amir E. Aharoni
2012-11-21 20:59:47 +02:00
parent 5035f5d739
commit 630f9d141a

View File

@@ -99,8 +99,9 @@
$element.css( 'font-family', fontStack.join() );
}
// Set the font of this element's children if they are not excluded
$element.find( 'textarea, input' )
// Set the font of this element's children if they are not excluded.
// font-family of <input>, <textarea> and <button> must be changed explicitly.
$element.find( 'textarea, input, button' )
.not( this.options.exclude )
.css( 'font-family', fontStack.join() );
},