diff options
Diffstat (limited to 'demos/effect/default.html')
-rw-r--r-- | demos/effect/default.html | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/demos/effect/default.html b/demos/effect/default.html index b477983e6..ffb313073 100644 --- a/demos/effect/default.html +++ b/demos/effect/default.html @@ -1,4 +1,4 @@ -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> @@ -25,15 +25,15 @@ #button { padding: .5em 1em; text-decoration: none; } #effect { width: 240px; height: 135px; padding: 0.4em; position: relative; } #effect h3 { margin: 0; padding: 0.4em; text-align: center; } - .ui-effects-transfer { border: 2px dotted gray; } + .ui-effects-transfer { border: 2px dotted gray; } </style> <script> $(function() { // run the currently selected effect function runEffect() { - // get effect type from + // get effect type from var selectedEffect = $( "#effectTypes" ).val(); - + // most effect types need no options passed by default var options = {}; // some effects have required parameters @@ -66,8 +66,6 @@ </head> <body> -<div class="demo"> - <div class="toggler"> <div id="effect" class="ui-widget-content ui-corner-all"> <h3 class="ui-widget-header ui-corner-all">Effect</h3> @@ -97,13 +95,8 @@ <a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a> -</div><!-- End demo --> - - - <div class="demo-description"> <p>Click the button above to show the effect.</p> -</div><!-- End demo-description --> - +</div> </body> </html> |