diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-10-13 15:23:42 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-10-13 15:23:42 -0400 |
commit | bb41a258a84413b1fa2fda1a17a9ed86fd9d83e9 (patch) | |
tree | dedd68ac032e61877521d8c8fa8f205537444f81 | |
parent | a829697d0c9083438bde3a2e47964c29bfbc9417 (diff) | |
download | jquery-ui-bb41a258a84413b1fa2fda1a17a9ed86fd9d83e9.tar.gz jquery-ui-bb41a258a84413b1fa2fda1a17a9ed86fd9d83e9.zip |
Sortable demos: Coding standards.
-rw-r--r-- | demos/sortable/connect-lists-through-tabs.html | 49 | ||||
-rw-r--r-- | demos/sortable/connect-lists.html | 28 | ||||
-rw-r--r-- | demos/sortable/default.html | 28 | ||||
-rw-r--r-- | demos/sortable/delay-start.html | 30 | ||||
-rw-r--r-- | demos/sortable/display-grid.html | 28 | ||||
-rw-r--r-- | demos/sortable/empty-lists.html | 34 | ||||
-rw-r--r-- | demos/sortable/index.html | 4 | ||||
-rw-r--r-- | demos/sortable/items.html | 35 | ||||
-rw-r--r-- | demos/sortable/placeholder.html | 30 | ||||
-rw-r--r-- | demos/sortable/portlets.html | 46 |
10 files changed, 155 insertions, 157 deletions
diff --git a/demos/sortable/connect-lists-through-tabs.html b/demos/sortable/connect-lists-through-tabs.html index d432afe9c..9b48ede67 100644 --- a/demos/sortable/connect-lists-through-tabs.html +++ b/demos/sortable/connect-lists-through-tabs.html @@ -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" ); }); } }); @@ -67,12 +68,10 @@ </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> diff --git a/demos/sortable/connect-lists.html b/demos/sortable/connect-lists.html index b08678d61..1741a8bd4 100644 --- a/demos/sortable/connect-lists.html +++ b/demos/sortable/connect-lists.html @@ -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> @@ -43,15 +43,15 @@ </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> diff --git a/demos/sortable/default.html b/demos/sortable/default.html index ab81a8bc0..56b4aa2c3 100644 --- a/demos/sortable/default.html +++ b/demos/sortable/default.html @@ -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> @@ -37,14 +37,14 @@ </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> diff --git a/demos/sortable/delay-start.html b/demos/sortable/delay-start.html index 7afb6be37..a6c395fcb 100644 --- a/demos/sortable/delay-start.html +++ b/demos/sortable/delay-start.html @@ -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> diff --git a/demos/sortable/display-grid.html b/demos/sortable/display-grid.html index e90a38c25..3049b54a2 100644 --- a/demos/sortable/display-grid.html +++ b/demos/sortable/display-grid.html @@ -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> @@ -41,13 +41,13 @@ </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> diff --git a/demos/sortable/empty-lists.html b/demos/sortable/empty-lists.html index b68ad5983..bb5123820 100644 --- a/demos/sortable/empty-lists.html +++ b/demos/sortable/empty-lists.html @@ -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> @@ -55,14 +55,14 @@ </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> diff --git a/demos/sortable/index.html b/demos/sortable/index.html index 9fa93801f..b307ef777 100644 --- a/demos/sortable/index.html +++ b/demos/sortable/index.html @@ -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> diff --git a/demos/sortable/items.html b/demos/sortable/items.html index 3f1cbb6c3..e04138372 100644 --- a/demos/sortable/items.html +++ b/demos/sortable/items.html @@ -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> @@ -51,20 +51,19 @@ </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> diff --git a/demos/sortable/placeholder.html b/demos/sortable/placeholder.html index d9c7e838c..bb1709290 100644 --- a/demos/sortable/placeholder.html +++ b/demos/sortable/placeholder.html @@ -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> diff --git a/demos/sortable/portlets.html b/demos/sortable/portlets.html index fefef3d9f..13620ab94 100644 --- a/demos/sortable/portlets.html +++ b/demos/sortable/portlets.html @@ -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; } @@ -19,25 +19,25 @@ .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> @@ -83,13 +83,13 @@ </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> |