diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-31 01:20:50 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-31 01:20:50 +0000 |
commit | 9a35874d44262f79d1a5fc7d8c7e673518c985fd (patch) | |
tree | f9cd8915ee759d2427c657e680e9282e7b20aa86 /demos/droppable/tolerance.html | |
parent | 2789fca8afb34dc770df8163fad7f6df15a77025 (diff) | |
download | jquery-ui-9a35874d44262f79d1a5fc7d8c7e673518c985fd.tar.gz jquery-ui-9a35874d44262f79d1a5fc7d8c7e673518c985fd.zip |
demos: whitespace fixes
- trailing whitespace
- inconsistent line endings
- set svn:eol-style to native
Diffstat (limited to 'demos/droppable/tolerance.html')
-rw-r--r-- | demos/droppable/tolerance.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/demos/droppable/tolerance.html b/demos/droppable/tolerance.html index d49cfcfdd..b0278c6ef 100644 --- a/demos/droppable/tolerance.html +++ b/demos/droppable/tolerance.html @@ -14,9 +14,9 @@ </style> <script type="text/javascript"> $(function() { - + $("#draggable").draggable(); - + $("#droppable").droppable({ activeClass: 'ui-state-hover', hoverClass: 'ui-state-active', @@ -24,7 +24,7 @@ $(this).addClass('ui-state-highlight').find('p').html('Dropped!'); } }); - + $("#droppable-fit").droppable({ activeClass: 'ui-state-hover', hoverClass: 'ui-state-active', @@ -33,7 +33,7 @@ $(this).addClass('ui-state-highlight').find('p').html('Dropped!'); } }); - + $("#droppable-pointer").droppable({ activeClass: 'ui-state-hover', hoverClass: 'ui-state-active', @@ -42,7 +42,7 @@ $(this).addClass('ui-state-highlight').find('p').html('Dropped!'); } }); - + $("#droppable-touch").droppable({ activeClass: 'ui-state-hover', hoverClass: 'ui-state-active', @@ -51,7 +51,7 @@ $(this).addClass('ui-state-highlight').find('p').html('Dropped!'); } }); - + }); </script> </head> |