Wrong exclude selector for webfonts

* It is not textbox. It is textarea. :(

Change-Id: Ib6b170fe09101448ccf231c5c3244b7ad3f7b291
This commit is contained in:
Santhosh Thottingal
2012-09-17 09:25:48 -07:00
parent d4a46dccd2
commit 569b09712c

View File

@@ -47,7 +47,7 @@
if ( mw.user.options.get( 'editfont' ) ) {
// Exclude textboxes from webfonts if user has edit area font option
// set using 'Preferences' page
return 'textbox';
return 'textarea';
}
return $.fn.webfonts.defaults.exclude;
} ()