From 8a074fcb330dfb56e1dd5e07542813979f076cab Mon Sep 17 00:00:00 2001 From: Anne-Gaelle Colom Date: Mon, 25 Jun 2012 00:56:28 +0200 Subject: [PATCH] removed the extra space in code demo --- docs/forms/docs-forms.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/forms/docs-forms.html b/docs/forms/docs-forms.html index a342942391e..ff774813653 100644 --- a/docs/forms/docs-forms.html +++ b/docs/forms/docs-forms.html @@ -136,8 +136,8 @@

Forms in toolbars

For example:


 <div data-role="fieldcontain">
-<label for="name">Text Input:</label>
-<input type="text" name="name" id="name" value="" />
+	<label for="name">Text Input:</label>
+	<input type="text" name="name" id="name" value="" />
 </div>
 
@@ -201,10 +201,10 @@

Preventing auto-initialization of form elements

If you'd prefer that a particular form control be left untouched by jQuery Mobile, simply give that element the attribute data-role="none". For example:


 <label for="foo">
-<select name="foo" id="foo"  data-role="none">
-	<option value="a" >A</option>
-	<option value="b" >B</option>
-	<option value="c" >C</option>
+<select name="foo" id="foo" data-role="none">
+	<option value="a">A</option>
+	<option value="b">B</option>
+	<option value="c">C</option>
 </select>