Skip to content

Commit ad4f519

Browse files
committed
Simplify and avoid confusion by removing explicit delimiter equal to the default
1 parent d6a6f53 commit ad4f519

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

examples/basic.html

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ <h2>&lt;input type="text"&gt;</h2>
2828
</div>
2929
<script>
3030
$('#input-tags').selectize({
31-
delimiter: ',',
3231
persist: false,
3332
createOnBlur: true,
3433
create: function(input) {

examples/plugins.html

-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ <h2>Plugin: "remove_button"</h2>
3434
<script>
3535
$('.input-tags').selectize({
3636
plugins: ['remove_button'],
37-
delimiter: ',',
3837
persist: false,
3938
create: function(input) {
4039
return {
@@ -63,7 +62,6 @@ <h2>Plugin: "restore_on_backspace"</h2>
6362
<script>
6463
$('#input-tags6').selectize({
6564
plugins: ['restore_on_backspace'],
66-
delimiter: ',',
6765
persist: false,
6866
create: function(input) {
6967
return {
@@ -88,7 +86,6 @@ <h2>Plugin: "drag_drop"</h2>
8886
<script>
8987
$('.input-sortable').selectize({
9088
plugins: ['drag_drop'],
91-
delimiter: ',',
9289
persist: false,
9390
create: function(input) {
9491
return {

examples/rtl.html

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ <h2>Right-to-left Support (RTL)</h2>
2828
</div>
2929
<script>
3030
$('#input-tags').selectize({
31-
delimiter: ',',
3231
persist: false,
3332
create: function(input) {
3433
return {

0 commit comments

Comments
 (0)