Przeglądaj źródła

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 10 lat temu
rodzic
commit
1fe8de3ad5
1 zmienionych plików z 4 dodań i 3 usunięć
  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>