]> source.dussan.org Git - jquery-ui.git/commitdiff
Sortable demos: Coding standards.
authorScott González <scott.gonzalez@gmail.com>
Wed, 13 Oct 2010 19:23:42 +0000 (15:23 -0400)
committerScott González <scott.gonzalez@gmail.com>
Wed, 13 Oct 2010 19:23:42 +0000 (15:23 -0400)
demos/sortable/connect-lists-through-tabs.html
demos/sortable/connect-lists.html
demos/sortable/default.html
demos/sortable/delay-start.html
demos/sortable/display-grid.html
demos/sortable/empty-lists.html
demos/sortable/index.html
demos/sortable/items.html
demos/sortable/placeholder.html
demos/sortable/portlets.html

index d432afe9c0b2adbb30b2bcc01cbb764775b1b64a..9b48ede67cb2c0db0fbe7db431afe0d1c4e06a5e 100644 (file)
@@ -1,36 +1,37 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable - Connect lists with Tabs</title>
-       <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
-       <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.droppable.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.tabs.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+       <script src="../../jquery-1.4.2.js"></script>
+       <script src="../../ui/jquery.ui.core.js"></script>
+       <script src="../../ui/jquery.ui.widget.js"></script>
+       <script src="../../ui/jquery.ui.mouse.js"></script>
+       <script src="../../ui/jquery.ui.sortable.js"></script>
+       <script src="../../ui/jquery.ui.droppable.js"></script>
+       <script src="../../ui/jquery.ui.tabs.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 120px; }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $("#sortable1, #sortable2").sortable().disableSelection();
+               $( "#sortable1, #sortable2" ).sortable().disableSelection();
 
-               var $tabs = $("#tabs").tabs();
+               var $tabs = $( "#tabs" ).tabs();
 
-               var $tab_items = $("ul:first li",$tabs).droppable({
+               var $tab_items = $( "ul:first li", $tabs ).droppable({
                        accept: ".connectedSortable li",
                        hoverClass: "ui-state-hover",
-                       drop: function(ev, ui) {
-                               var $item = $(this);
-                               var $list = $($item.find('a').attr('href')).find('.connectedSortable');
+                       drop: function( event, ui ) {
+                               var $item = $( this );
+                               var $list = $( $item.find( "a" ).attr( "href" ) )
+                                       .find( ".connectedSortable" );
 
-                               ui.draggable.hide('slow', function() {
-                                       $tabs.tabs('select', $tab_items.index($item));
-                                       $(this).appendTo($list).show('slow');
+                               ui.draggable.hide( "slow", function() {
+                                       $tabs.tabs( "select", $tab_items.index( $item ) );
+                                       $( this ).appendTo( $list ).show( "slow" );
                                });
                        }
                });
 
 </div><!-- End demo -->
 
-<div class="demo-description">
 
-<p>
-       Sort items from one list into another and vice versa, by dropping the list item on the appropriate tab above.
-</p>
 
+<div class="demo-description">
+<p>Sort items from one list into another and vice versa, by dropping the list item on the appropriate tab above.</p>
 </div><!-- End demo-description -->
 
 </body>
index b08678d6121f17b84fad9099214e5caa45ba9843..1741a8bd4a6dcb4de79c868d7fcd44a9e138d47b 100644 (file)
@@ -1,23 +1,23 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable - Connect lists</title>
-       <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
-       <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+       <script src="../../jquery-1.4.2.js"></script>
+       <script src="../../ui/jquery.ui.core.js"></script>
+       <script src="../../ui/jquery.ui.widget.js"></script>
+       <script src="../../ui/jquery.ui.mouse.js"></script>
+       <script src="../../ui/jquery.ui.sortable.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        #sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; float: left; margin-right: 10px; }
        #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 120px; }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $("#sortable1, #sortable2").sortable({
-                       connectWith: '.connectedSortable'
+               $( "#sortable1, #sortable2" ).sortable({
+                       connectWith: ".connectedSortable"
                }).disableSelection();
        });
        </script>
 
 </div><!-- End demo -->
 
-<div class="demo-description">
 
+
+<div class="demo-description">
 <p>
        Sort items from one list into another and vice versa, by passing a selector into
        the <code>connectWith</code> option. The simplest way to do this is to
        group all related lists with a CSS class, and then pass that class into the
        sortable function (i.e., <code>connectWith: '.myclass'</code>).
 </p>
-
 </div><!-- End demo-description -->
 
 </body>
index ab81a8bc03bfd136cdb4c5b925e4407e99124378..56b4aa2c3ddaa2d795ccb251d1a30e1c76988e31 100644 (file)
@@ -1,24 +1,24 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable - Default functionality</title>
-       <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
-       <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+       <script src="../../jquery-1.4.2.js"></script>
+       <script src="../../ui/jquery.ui.core.js"></script>
+       <script src="../../ui/jquery.ui.widget.js"></script>
+       <script src="../../ui/jquery.ui.mouse.js"></script>
+       <script src="../../ui/jquery.ui.sortable.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        #sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
        #sortable li { margin: 0 3px 3px 3px; padding: 0.4em; padding-left: 1.5em; font-size: 1.4em; height: 18px; }
        #sortable li span { position: absolute; margin-left: -1.3em; }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $("#sortable").sortable();
-               $("#sortable").disableSelection();
+               $( "#sortable" ).sortable();
+               $( "#sortable" ).disableSelection();
        });
        </script>
 </head>
 
 </div><!-- End demo -->
 
-<div class="demo-description">
 
+
+<div class="demo-description">
 <p>
        Enable a group of DOM elements to be sortable. Click on and drag an
        element to a new spot within the list, and the other items will adjust to
        fit. By default, sortable items share <code>draggable</code> properties.
 </p>
-
 </div><!-- End demo-description -->
 
 </body>
index 7afb6be373de5a94076d83f9df70f4de935faf7a..a6c395fcb1019d33d0d989f61f90c997b66bf204 100644 (file)
@@ -1,30 +1,30 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable - Delay start</title>
-       <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
-       <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+       <script src="../../jquery-1.4.2.js"></script>
+       <script src="../../ui/jquery.ui.core.js"></script>
+       <script src="../../ui/jquery.ui.widget.js"></script>
+       <script src="../../ui/jquery.ui.mouse.js"></script>
+       <script src="../../ui/jquery.ui.sortable.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        #sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; margin-bottom: 15px;zoom: 1; }
        #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 95%; }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $("#sortable1").sortable({
+               $( "#sortable1" ).sortable({
                        delay: 300
                });
                
-               $("#sortable2").sortable({
+               $( "#sortable2" ).sortable({
                        distance: 15
                });
 
-               $("li").disableSelection();
+               $( "li" ).disableSelection();
        });
        </script>
 </head>
@@ -51,8 +51,9 @@
 
 </div><!-- End demo -->
 
-<div class="demo-description">
 
+
+<div class="demo-description">
 <p>
        Prevent accidental sorting either by delay (time) or distance. Set a number of
        milliseconds the element needs to be dragged before sorting starts
@@ -60,7 +61,6 @@
        needs to be dragged before sorting starts with the <code>distance</code>
        option.
 </p>
-
 </div><!-- End demo-description -->
 
 </body>
index e90a38c25962ed5f5161bf76a7778cd0a08a96b5..3049b54a21f36d10f0adb03b2c4c75616a3ba03c 100644 (file)
@@ -1,23 +1,23 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable - Display as grid</title>
-       <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
-       <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+       <script src="../../jquery-1.4.2.js"></script>
+       <script src="../../ui/jquery.ui.core.js"></script>
+       <script src="../../ui/jquery.ui.widget.js"></script>
+       <script src="../../ui/jquery.ui.mouse.js"></script>
+       <script src="../../ui/jquery.ui.sortable.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        #sortable { list-style-type: none; margin: 0; padding: 0; }
        #sortable li { margin: 3px 3px 3px 0; padding: 1px; float: left; width: 100px; height: 90px; font-size: 4em; text-align: center; }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $("#sortable").sortable();
-               $("#sortable").disableSelection();
+               $( "#sortable" ).sortable();
+               $( "#sortable" ).disableSelection();
        });
        </script>
 </head>
 
 </div><!-- End demo -->
 
-<div class="demo-description">
 
+
+<div class="demo-description">
 <p>
        To arrange sortable items as a grid, give them identical dimensions and
        float them using CSS.
 </p>
-
 </div><!-- End demo-description -->
 
 </body>
index b68ad59834a0822132f7dbdda744d64f28ad569f..bb51238203ef69590a46b63d22ef0f4b02e8709e 100644 (file)
@@ -1,31 +1,31 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable - Handle empty lists</title>
-       <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
-       <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+       <script src="../../jquery-1.4.2.js"></script>
+       <script src="../../ui/jquery.ui.core.js"></script>
+       <script src="../../ui/jquery.ui.widget.js"></script>
+       <script src="../../ui/jquery.ui.mouse.js"></script>
+       <script src="../../ui/jquery.ui.sortable.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        #sortable1, #sortable2, #sortable3 { list-style-type: none; margin: 0; padding: 0; float: left; margin-right: 10px; background: #eee; padding: 5px; width: 143px;}
        #sortable1 li, #sortable2 li, #sortable3 li { margin: 5px; padding: 5px; font-size: 1.2em; width: 120px; }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $("ul.droptrue").sortable({
-                       connectWith: 'ul'
+               $( "ul.droptrue" ).sortable({
+                       connectWith: "ul"
                });
 
-               $("ul.dropfalse").sortable({
-                       connectWith: 'ul',
+               $( "ul.dropfalse" ).sortable({
+                       connectWith: "ul",
                        dropOnEmpty: false
                });
 
-               $("#sortable1, #sortable2, #sortable3").disableSelection();
+               $( "#sortable1, #sortable2, #sortable3" ).disableSelection();
        });
        </script>
 </head>
 
 </div><!-- End demo -->
 
-<div class="demo-description">
 
+
+<div class="demo-description">
 <p>
        Prevent all items in a list from being dropped into a separate, empty list
        using the <code>dropOnEmpty</code> option set to <code>false</code>.  By default,
        sortable items can be dropped on empty lists.
 </p>
-
 </div><!-- End demo-description -->
 
 </body>
index 9fa93801ff8e27b7235222f7fb540c55e6ea381a..b307ef777ff0b81a10ddc14fd709f537fad5b373 100644 (file)
@@ -1,9 +1,9 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable Demos</title>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
+       <link rel="stylesheet" href="../demos.css">
 </head>
 <body>
 
index 3f1cbb6c3d788a272b9c67e0566d2617335d9b1c..e04138372cc2c0af491bd383d24c191abed39a80 100644 (file)
@@ -1,30 +1,30 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable - Include / exclude items</title>
-       <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
-       <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+       <script src="../../jquery-1.4.2.js"></script>
+       <script src="../../ui/jquery.ui.core.js"></script>
+       <script src="../../ui/jquery.ui.widget.js"></script>
+       <script src="../../ui/jquery.ui.mouse.js"></script>
+       <script src="../../ui/jquery.ui.sortable.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        #sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; zoom: 1; }
        #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 3px; width: 90%; }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $("#sortable1").sortable({
-                       items: 'li:not(.ui-state-disabled)'
+               $( "#sortable1" ).sortable({
+                       items: "li:not(.ui-state-disabled)"
                });
 
-               $("#sortable2").sortable({
-                       cancel: '.ui-state-disabled'
+               $( "#sortable2" ).sortable({
+                       cancel: ".ui-state-disabled"
                });
 
-               $("#sortable1 li, #sortable2 li").disableSelection();           
+               $( "#sortable1 li, #sortable2 li" ).disableSelection();         
        });
        </script>
 </head>
 
 </div><!-- End demo -->
 
-<div class="demo-description">
 
+
+<div class="demo-description">
 <p>
        Specify which items are eligible to sort by passing a jQuery selector into
        the <code>items</code> option. Items excluded from this option are not
        sortable, nor are they valid targets for sortable items.
 </p>
-
 <p>
        To only prevent sorting on certain items, pass a jQuery selector into the
        <code>cancel</code> option. Cancelled items remain valid sort targets for
        others.
 </p>
-
 </div><!-- End demo-description -->
 
 </body>
index d9c7e838cffed92a04a682cb3c443f4766229f5e..bb1709290e2d9d84797792785374a1097ba147ac 100644 (file)
@@ -1,27 +1,27 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable - Drop placeholder</title>
-       <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
-       <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+       <script src="../../jquery-1.4.2.js"></script>
+       <script src="../../ui/jquery.ui.core.js"></script>
+       <script src="../../ui/jquery.ui.widget.js"></script>
+       <script src="../../ui/jquery.ui.mouse.js"></script>
+       <script src="../../ui/jquery.ui.sortable.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        #sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
        #sortable li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; height: 1.5em; }
        html>body #sortable li { height: 1.5em; line-height: 1.2em; }
        .ui-state-highlight { height: 1.5em; line-height: 1.2em; }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $("#sortable").sortable({
-                       placeholder: 'ui-state-highlight'
+               $( "#sortable" ).sortable({
+                       placeholder: "ui-state-highlight"
                });
-               $("#sortable").disableSelection();
+               $( "#sortable" ).disableSelection();
        });
        </script>
 </head>
@@ -40,8 +40,9 @@
 
 </div><!-- End demo -->
 
-<div class="demo-description">
 
+
+<div class="demo-description">
 <p>
        When dragging a sortable item to a new location, other items will make room
        for the that item by shifting to allow white space between them. Pass a
@@ -49,7 +50,6 @@
        be visible.  Use the boolean <code>forcePlaceholderSize</code> option
        to set dimensions on the placeholder.
 </p>
-
 </div><!-- End demo-description -->
 
 </body>
index fefef3d9f00863679ceb7850cde205348f11b555..13620ab94a38cc68271b69d727856905508d5c2e 100644 (file)
@@ -1,16 +1,16 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Sortable - Portlets</title>
-       <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
-       <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
-       <script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+       <script src="../../jquery-1.4.2.js"></script>
+       <script src="../../ui/jquery.ui.core.js"></script>
+       <script src="../../ui/jquery.ui.widget.js"></script>
+       <script src="../../ui/jquery.ui.mouse.js"></script>
+       <script src="../../ui/jquery.ui.sortable.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        .column { width: 170px; float: left; padding-bottom: 100px; }
        .portlet { margin: 0 1em 1em 0; }
        .portlet-header { margin: 0.3em; padding-bottom: 4px; padding-left: 0.2em; }
        .ui-sortable-placeholder { border: 1px dotted black; visibility: visible !important; height: 50px !important; }
        .ui-sortable-placeholder * { visibility: hidden; }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $(".column").sortable({
-                       connectWith: '.column'
+               $( ".column" ).sortable({
+                       connectWith: ".column"
                });
 
-               $(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all")
-                       .find(".portlet-header")
-                               .addClass("ui-widget-header ui-corner-all")
-                               .prepend('<span class="ui-icon ui-icon-minusthick"></span>')
+               $( ".portlet" ).addClass( "ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" )
+                       .find( ".portlet-header" )
+                               .addClass( "ui-widget-header ui-corner-all" )
+                               .prepend( "<span class='ui-icon ui-icon-minusthick'></span>")
                                .end()
-                       .find(".portlet-content");
+                       .find( ".portlet-content" );
 
-               $(".portlet-header .ui-icon").click(function() {
-                       $(this).toggleClass("ui-icon-minusthick").toggleClass("ui-icon-plusthick");
-                       $(this).parents(".portlet:first").find(".portlet-content").toggle();
+               $( ".portlet-header .ui-icon" ).click(function() {
+                       $( this ).toggleClass( "ui-icon-minusthick" ).toggleClass( "ui-icon-plusthick" );
+                       $( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle();
                });
 
-               $(".column").disableSelection();
+               $( ".column" ).disableSelection();
        });
        </script>
 </head>
 
 </div><!-- End demo -->
 
-<div class="demo-description">
 
+
+<div class="demo-description">
 <p>
        Enable portlets (styled divs) as sortables and use the <code>connectWith</code>
        option to allow sorting between columns.
 </p>
-
 </div><!-- End demo-description -->
 
 </body>