From 9ea3f29f133b55de92327440e28a2289d16e974b Mon Sep 17 00:00:00 2001 From: Julien Jakubowski Date: Fri, 17 Jan 2014 19:34:54 +0100 Subject: [PATCH] explicitly set text input type to text in HTML makes it compatible with Twitter Bootstrap 2.1+ --- jquery.jeditable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.jeditable.js b/jquery.jeditable.js index 1d066d4..6251ad1 100644 --- a/jquery.jeditable.js +++ b/jquery.jeditable.js @@ -451,7 +451,7 @@ }, text: { element : function(settings, original) { - var input = $(''); + var input = $(''); if (settings.width != 'none') { input.attr('width', settings.width); } if (settings.height != 'none') { input.attr('height', settings.height); } /* https://bugzilla.mozilla.org/show_bug.cgi?id=236791 */