diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-09-27 15:47:17 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-09-27 15:47:17 -0400 |
commit | 03517636e8f68b4541537d24501affcd62d20059 (patch) | |
tree | 691db919d66d20be7ac7edcb6118b5ec35092fc4 /demos/selectable/default.html | |
parent | 6b6e1d76e701c80a2431c2806550e6b2160074dc (diff) | |
download | jquery-ui-03517636e8f68b4541537d24501affcd62d20059.tar.gz jquery-ui-03517636e8f68b4541537d24501affcd62d20059.zip |
Selectable demos: coding standards.
Diffstat (limited to 'demos/selectable/default.html')
-rw-r--r-- | demos/selectable/default.html | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/demos/selectable/default.html b/demos/selectable/default.html index f7d6d8693..bd72f651c 100644 --- a/demos/selectable/default.html +++ b/demos/selectable/default.html @@ -1,30 +1,31 @@ <!DOCTYPE html> <html lang="en"> <head> - <meta charset="UTF-8" /> + <meta charset="utf-8"> <title>jQuery UI Selectable - 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.selectable.js"></script> - <link type="text/css" href="../demos.css" rel="stylesheet" /> + <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.selectable.js"></script> + <link rel="stylesheet" href="../demos.css"> - <style type="text/css"> + <style> #feedback { font-size: 1.4em; } #selectable .ui-selecting { background: #FECA40; } #selectable .ui-selected { background: #F39814; color: white; } #selectable { list-style-type: none; margin: 0; padding: 0; width: 60%; } #selectable li { margin: 3px; padding: 0.4em; font-size: 1.4em; height: 18px; } </style> - <script type="text/javascript"> + <script> $(function() { - $("#selectable").selectable(); + $( "#selectable" ).selectable(); }); </script> </head> <body> + <div class="demo"> <ol id="selectable"> @@ -39,10 +40,11 @@ </div><!-- End demo --> -<div class="demo-description"> -<p>Enable a DOM element (or group of elements) to be selectable. Draw a box with your cursor to select items. Hold down the Ctrl key to make multiple non-adjacent selections. </p> +<div class="demo-description"> +<p>Enable a DOM element (or group of elements) to be selectable. Draw a box with your cursor to select items. Hold down the Ctrl key to make multiple non-adjacent selections. </p> </div><!-- End demo-description --> + </body> </html> |