diff options
Diffstat (limited to 'demos/button/splitbutton.html')
-rw-r--r-- | demos/button/splitbutton.html | 33 |
1 files changed, 12 insertions, 21 deletions
diff --git a/demos/button/splitbutton.html b/demos/button/splitbutton.html index 177e7d02b..5b6493de5 100644 --- a/demos/button/splitbutton.html +++ b/demos/button/splitbutton.html @@ -1,10 +1,10 @@ -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Button - Split button</title> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css"> - <script src="../../jquery-1.8.0.js"></script> + <script src="../../jquery-1.8.2.js"></script> <script src="../../ui/jquery.ui.core.js"></script> <script src="../../ui/jquery.ui.widget.js"></script> <script src="../../ui/jquery.ui.button.js"></script> @@ -49,30 +49,21 @@ </head> <body> -<div class="demo"> - +<div> <div> - <div> - <button id="rerun">Run last action</button> - <button id="select">Select an action</button> - </div> - <ul> - <li><a href="#">Open...</a></li> - <li><a href="#">Save</a></li> - <li><a href="#">Delete</a></li> - </ul> + <button id="rerun">Run last action</button> + <button id="select">Select an action</button> </div> - -</div><!-- End demo --> - - + <ul> + <li><a href="#">Open...</a></li> + <li><a href="#">Save</a></li> + <li><a href="#">Delete</a></li> + </ul> +</div> <div class="demo-description"> - <p>An example of a split button built with two buttons: A plain button with just text, one with only a primary icon and no text. Both are grouped together in a set.</p> - -</div><!-- End demo-description --> - +</div> </body> </html> |