Parcourir la source

Fix tagging example

Tagging should be demonstrated using the multiple select, as that
is where it really shines. It's also how we used to demonstrate it.

This closes https://github.com/select2/select2/issues/2901.
Kevin Brown il y a 10 ans
Parent
commit
1fe8de3ad5
1 fichiers modifiés avec 4 ajouts et 3 suppressions
  1. 4 3
      docs/examples.html

+ 4 - 3
docs/examples.html

@@ -466,9 +466,10 @@ function log (name, args) {
       </p>
 
       <p>
-        <select class="js-example-tags form-control">
-          <option value="one">First</option>
-          <option value="other">Other</option>
+        <select class="js-example-tags form-control" multiple="multiple">
+          <option selected="selected">orange</option>
+          <option>white</option>
+          <option selected="selected">purple</option>
         </select>
       </p>