From af74af6401e76e541c558ac0ff7f7b60f118f52c Mon Sep 17 00:00:00 2001 From: Gabriel Schulhof Date: Fri, 19 Jul 2013 23:11:55 +0300 Subject: [PATCH] Textinput: Apply class(es) listed in the value of the "wrapperClass" option when creating the wrapper. --- js/widgets/forms/textinput.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/js/widgets/forms/textinput.js b/js/widgets/forms/textinput.js index 4e586fb8b37..c65e975d660 100644 --- a/js/widgets/forms/textinput.js +++ b/js/widgets/forms/textinput.js @@ -85,7 +85,16 @@ $.widget( "mobile.textinput", { }, _wrap: function(){ - return $( "
" ); + var opts = this.options; + + return $( "" ); }, _autoCorrect: function(){