diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-02-01 01:06:42 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-02-01 01:06:42 +0000 |
commit | 5c155719a81e18f4cc88f2de2388bc42c6732db5 (patch) | |
tree | af2295317da53e452ad445d0e740c193b38123d9 /demos/sortable/empty-lists.html | |
parent | b642b98619f6c8dcc65e9d0d4fcb075fa46f5d99 (diff) | |
download | jquery-ui-5c155719a81e18f4cc88f2de2388bc42c6732db5.tar.gz jquery-ui-5c155719a81e18f4cc88f2de2388bc42c6732db5.zip |
Sortable demos: Updated all uses of connectWith to use a string instead of an array (array is deprecated).
Diffstat (limited to 'demos/sortable/empty-lists.html')
-rw-r--r-- | demos/sortable/empty-lists.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/sortable/empty-lists.html b/demos/sortable/empty-lists.html index 660d6d91b..daf41e1af 100644 --- a/demos/sortable/empty-lists.html +++ b/demos/sortable/empty-lists.html @@ -14,11 +14,11 @@ <script type="text/javascript"> $(function() { $("ul.droptrue").sortable({ - connectWith: ['ul'] + connectWith: 'ul' }); $("ul.dropfalse").sortable({ - connectWith: ['ul'], + connectWith: 'ul', dropOnEmpty: false }); }); |