d81886e5de
In the past, Select2 triggered the `select2-clearing` event when clearing the placeholder. This has been switched to the `unselect` event which is now triggered whenever the placeholder is cleared. The placeholder can also be prevented if the `unselecting` event is prevented. This will also trigger the event when deleting every option from the multiple select, so it is possible for the `unselecting` event to be triggered multiple times when clearing a multiple select. This adds tests to ensure that the `allowClear` option always works. This closes https://github.com/select2/select2/issues/2954.
30 lines
959 B
HTML
30 lines
959 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="../vendor/qunit-1.14.0.css" type="text/css" />
|
|
<link rel="stylesheet" href="../../dist/css/select2.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture">
|
|
<select class="single">
|
|
<option>placeholder</option>
|
|
<option>One</option>
|
|
</select>
|
|
|
|
<select class="multiple" multiple="multiple">
|
|
<option>One</option>
|
|
</select>
|
|
</div>
|
|
|
|
<script src="../vendor/qunit-1.14.0.js" type="text/javascript"></script>
|
|
<script src="../../vendor/almond-0.2.9.js" type="text/javascript"></script>
|
|
<script src="../../vendor/jquery-2.1.0.js" type="text/javascript"></script>
|
|
<script src="../../dist/js/select2.amd.js" type="text/javascript"></script>
|
|
|
|
<script src="../mock.js" type="text/javascript"></script>
|
|
|
|
<script src="allowClear-tests.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|