Sfoglia il codice sorgente

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 anni fa
parent
commit
1fe8de3ad5
1 ha cambiato i file con 4 aggiunte e 3 eliminazioni
  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>