Procházet zdrojové kódy

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 před 10 roky
rodič
revize
1fe8de3ad5
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  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>