aboutsummaryrefslogtreecommitdiffstats
path: root/demos/datepicker/alt-field.html
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2023-03-29 00:18:07 +0200
committerMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2023-05-10 10:53:57 +0200
commit0977ea1b48355bfddc98cb16673ea8b627904dab (patch)
treef80a53db718d477331b43156c5ea7642464e5b77 /demos/datepicker/alt-field.html
parentf8990e68e2d3900e7bb16926cc2d86ae97a3f0fa (diff)
downloadjquery-ui-0977ea1b48355bfddc98cb16673ea8b627904dab.tar.gz
jquery-ui-0977ea1b48355bfddc98cb16673ea8b627904dab.zip
Demos:Tests: Avoid self-closing HTML tags
Self-closing tags are reported by newer versions of the htmllint Grunt plugin. They also don't make sense in our HTML files since they are not XHTML-compliant and they run in HTML mode anyway. Ref gh-2157
Diffstat (limited to 'demos/datepicker/alt-field.html')
-rw-r--r--demos/datepicker/alt-field.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/datepicker/alt-field.html b/demos/datepicker/alt-field.html
index 779325719..be00e0d73 100644
--- a/demos/datepicker/alt-field.html
+++ b/demos/datepicker/alt-field.html
@@ -16,7 +16,7 @@
</head>
<body>
-<p>Date: <input type="text" id="datepicker">&nbsp;<input type="text" id="alternate" size="30"/></p>
+<p>Date: <input type="text" id="datepicker">&nbsp;<input type="text" id="alternate" size="30"></p>
<div class="demo-description">
<p>Populate an alternate field with its own date format whenever a date is selected using the <code>altField</code> and <code>altFormat</code> options. This feature could be used to present a human-friendly date for user selection, while passing a more computer-friendly date through for further processing.</p>