1
0
mirror of synced 2025-02-04 14:19:23 +03:00

catch up to master

This commit is contained in:
Igor Vaynberg 2013-04-11 19:15:41 -07:00
parent a903b5d3c1
commit d400e03a66
3 changed files with 22 additions and 2 deletions

View File

@ -247,7 +247,7 @@ $("#e10_4").select2({
<li>Loading...</li> <li>Loading...</li>
<script> <script>
$(function() { $(function() {
var url="https://api.github.com/repos/ivaynberg/select2/issues?state=closed&milestone=10"; var url="https://api.github.com/repos/ivaynberg/select2/issues?state=closed&milestone=8";
$.ajax({ $.ajax({
url: url, url: url,
dataType: "jsonp" dataType: "jsonp"

@ -1 +1 @@
Subproject commit dc27a5b74d78c1f04306caba576c27973311424b Subproject commit 4a0851bce51e4e279f4bd6edb26b3940d0c2a117

View File

@ -116,6 +116,26 @@
</script> </script>
<form>
<select id="select7">
<option value=""></option>
<option value="1" selected="selected">Foo</option>
<option value="2">Bar</option>
<option value="3">Baaaaaaaaaaaaaaz</option>
</select>
</form>
<script>
$(function () {
$('#select7').select2({
allowClear: true,
placeholder: 'Loooooong string',
width: 'off'
});
});
</script>
<div style="position: absolute; left:0; top:0; background: white; border: 1px solid red;" id="focus-spy">hello there</div> <div style="position: absolute; left:0; top:0; background: white; border: 1px solid red;" id="focus-spy">hello there</div>
<script> <script>
$(document).ready(function() { $(document).ready(function() {