Skip to content
This repository was archived by the owner on Sep 12, 2019. It is now read-only.

Commit bdeb907

Browse files
authored
Merge pull request #40 from select2/develop
Release Select2 4.0.9
2 parents 6f88568 + 3f8c3c5 commit bdeb907

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

pages/01.getting-started/01.installation/docs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ A CDN (content delivery network) is the fastest way to get up and running with S
1313
Select2 is hosted on both the [cdnjs](https://cdnjs.com/libraries/select2) and [jsDelivr](https://www.jsdelivr.com/#!select2) CDNs. Simply include the following lines of code in the `<head>` section of your page:
1414

1515
```
16-
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.8/css/select2.min.css" rel="stylesheet" />
17-
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.8/js/select2.min.js"></script>
16+
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.9/css/select2.min.css" rel="stylesheet" />
17+
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.9/js/select2.min.js"></script>
1818
```
1919

2020
>>> <i class="fa fa-info-circle"></i> Immediately following a new release, it takes some time for CDNs to catch up and get the new versions live on the CDN.

pages/03.configuration/03.data-attributes/docs.md

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ It is recommended that you declare your configuration options by [passing in an
1414
</select>
1515
```
1616

17+
>>> Some options are not supported as `data-*`, for example `disabled` as it's not a Javascript option, but it's an HTML [attribute](/configuration/options-api).
18+
1719
## Nested (subkey) options
1820

1921
Sometimes, you have options that are nested under a top-level option. For example, the options under the `ajax` option:

pages/13.i18n/docs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ process:
77
never_cache_twig: true
88
---
99

10-
{% do assets.addJs('https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.8/js/i18n/es.js', 90) %}
10+
{% do assets.addJs('https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.9/js/i18n/es.js', 90) %}
1111

1212
## Message translations
1313

themes/site/templates/partials/base.html.twig

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{% do assets.addCss('theme://css/custom.css',100) %}
1818
{% do assets.addCss('theme://css/font-awesome.min.css',100) %}
1919
{% do assets.addCss('theme://css/featherlight.min.css') %}
20-
{% do assets.addCss('https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.8/css/select2.min.css') %}
20+
{% do assets.addCss('https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.9/css/select2.min.css') %}
2121
{% do assets.addCss('theme://css/s2-docs.css', 100) %}
2222
{% do assets.addCss('theme://css/theme.css',100) %}
2323

@@ -33,7 +33,7 @@
3333
{% block javascripts %}
3434
{% do assets.addJs('jquery',101) %}
3535
{% do assets.addJs('theme://js/modernizr.custom.71422.js',100) %}
36-
{% do assets.addJs('https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.8/js/select2.full.min.js', 100) %}
36+
{% do assets.addJs('https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.9/js/select2.full.min.js', 100) %}
3737
{% do assets.addJs('https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js', 100) %}
3838
{% do assets.addJs('theme://js/featherlight.min.js') %}
3939
{% do assets.addJs('theme://js/clipboard.min.js') %}

0 commit comments

Comments
 (0)