瀏覽代碼

Fixed responsive example in documentation

This fixes the documentation so the responsive example actually works.
Everything was working properly, the example just wasn't updated when
the default for the width was changed to `100%` in
https://github.com/select2/select2/commit/5fd72d205253b6bac2db113cd6b9a0f8691f234e.
This is a change from the old `resolve` width setting, which is
responsible for parsing the style attribute and getting the width that
was set.

This closes https://github.com/select2/select2/issues/4050
Kevin Brown 9 年之前
父節點
當前提交
63d531a9c0
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      docs/examples.html

+ 3 - 1
docs/examples.html

@@ -201,7 +201,9 @@ slug: examples
     $(".js-example-disabled").select2();
     $(".js-example-disabled").select2();
     $(".js-example-disabled-multi").select2();
     $(".js-example-disabled-multi").select2();
 
 
-    $(".js-example-responsive").select2();
+    $(".js-example-responsive").select2({
+        width: 'resolve' // need to override the changed default
+    });
 
 
     $disabledResults.select2();
     $disabledResults.select2();