]> source.dussan.org Git - jquery-ui.git/commitdiff
Button demos: Coding standards.
authorScott González <scott.gonzalez@gmail.com>
Fri, 10 Sep 2010 02:43:06 +0000 (22:43 -0400)
committerScott González <scott.gonzalez@gmail.com>
Fri, 10 Sep 2010 02:45:43 +0000 (22:45 -0400)
demos/button/checkbox.html
demos/button/default.html
demos/button/icons.html
demos/button/index.html
demos/button/radio.html
demos/button/splitbutton.html
demos/button/toolbar.html

index b6192ee28eca39f7dee131c228dd2f34646609dd..1d44743e889930e9e939a5851638be557c01a8e5 100644 (file)
@@ -1,49 +1,44 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
-       <title>jQuery UI Button - Checkboxes demo</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.button.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <script type="text/javascript">
+       <meta charset="utf-8">
+       <title>jQuery UI Button - Checkboxes</title>
+       <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.button.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <script>
        $(function() {
-               $("#check").button();
-               $("#format").buttonset();
+               $( "#check" ).button();
+               $( "#format" ).buttonset();
        });
        </script>
        <style>
-               #format { margin-top: 2em; }
+       #format { margin-top: 2em; }
        </style>
 </head>
 <body>
 
 <div class="demo">
 
-       <input type="checkbox" id="check" /><label for="check">Toggle</label>
-       
-       <div id="format">
-               <input type="checkbox" id="check1" /><label for="check1">B</label>
-               <input type="checkbox" id="check2" /><label for="check2">I</label>
-               <input type="checkbox" id="check3" /><label for="check3">U</label>
-       </div>
+<input type="checkbox" id="check" /><label for="check">Toggle</label>
+
+<div id="format">
+       <input type="checkbox" id="check1" /><label for="check1">B</label>
+       <input type="checkbox" id="check2" /><label for="check2">I</label>
+       <input type="checkbox" id="check3" /><label for="check3">U</label>
+</div>
 
 </div><!-- End demo -->
 
 
 
 <div class="demo-description">
-
 <p>A checkbox is styled as a toggle button with the button widget. The label element associated with the checkbox is used for the button text.</p>
-
 <p>This demo also demonstrates three checkboxes styled as a button set by calling <code>.buttonset()</code> on a common container.</p>
-
 </div><!-- End demo-description -->
 
-
-
 </body>
 </html>
index 700c64bcc8d1b75ad37b316d1a80529b1b0fa6df..a4256574417563d8ab3d0282caf004f6808bb5b2 100644 (file)
@@ -1,46 +1,38 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
-       <title>jQuery UI Button - Default demo</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.button.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <script type="text/javascript">
+       <meta charset="utf-8">
+       <title>jQuery UI Button - Default functionality</title>
+       <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.button.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <script>
        $(function() {
-               $("button, input:submit, a", ".demo").button();
-               
-               $("a", ".demo").click(function() { return false; });
+               $( "button, input:submit, a", ".demo" ).button();
+               $( "a", ".demo" ).click(function() { return false; });
        });
        </script>
-       <style>
-               
-       </style>
 </head>
 <body>
 
 <div class="demo">
 
-       <button>A button element</button>
-       
-       <input type="submit" value="A submit button"/>
-       
-       <a href="#">An anchor</a>
+<button>A button element</button>
+
+<input type="submit" value="A submit button"/>
+
+<a href="#">An anchor</a>
 
 </div><!-- End demo -->
 
 
 
 <div class="demo-description">
-
 <p>Examples of the markup that can be used for buttons: A button element, an input of type submit and an anchor.</p>
-
 </div><!-- End demo-description -->
 
-
-
 </body>
 </html>
index 2dc11c5d8e560e28b2a3c630b78bd5252e9a6c21..c57f40c153f981355f1c1cf1d804c2e5d0e5ad1c 100644 (file)
@@ -1,63 +1,56 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
-       <title>jQuery UI Button - Icons demo</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.button.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <script type="text/javascript">
+       <meta charset="utf-8">
+       <title>jQuery UI Button - Icons</title>
+       <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.button.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <script>
        $(function() {
-               $(".demo button:first").button({
+               $( ".demo button:first" ).button({
             icons: {
-                primary: 'ui-icon-locked'
+                primary: "ui-icon-locked"
             },
             text: false
         }).next().button({
             icons: {
-                primary: 'ui-icon-locked'
+                primary: "ui-icon-locked"
             }
         }).next().button({
             icons: {
-                primary: 'ui-icon-gear',
-                secondary: 'ui-icon-triangle-1-s'
+                primary: "ui-icon-gear",
+                secondary: "ui-icon-triangle-1-s"
             }
         }).next().button({
             icons: {
-                primary: 'ui-icon-gear',
-                secondary: 'ui-icon-triangle-1-s'
+                primary: "ui-icon-gear",
+                secondary: "ui-icon-triangle-1-s"
             },
             text: false
         });
        });
        </script>
-       <style>
-               
-       </style>
 </head>
 <body>
 
 <div class="demo">
 
-       <button>Button with icon only</button>
-       <button>Button with icon on the left</button>
-       <button>Button with two icons</button>
-       <button>Button with two icons and no text</button>
+<button>Button with icon only</button>
+<button>Button with icon on the left</button>
+<button>Button with two icons</button>
+<button>Button with two icons and no text</button>
 
 </div><!-- End demo -->
 
 
 
 <div class="demo-description">
-
 <p>Some buttons with various combinations of text and icons, here specified via metadata.</p>
-
 </div><!-- End demo-description -->
 
-
-
 </body>
 </html>
index c2b37200d790aae47cb8a08effdabd9a2f2bc86b..23977c8207f79a2539b44088737412f3055430c3 100644 (file)
@@ -1,9 +1,9 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
+       <meta charset="utf-8">
        <title>jQuery UI Button Demos</title>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
+       <link rel="stylesheet" href="../demos.css">
 </head>
 <body>
 
index 3e5dc2379a9b4a3a53e1b5f2745c0ca4462f6a09..62bab21a09f48a668698e197a6f85a92c5dc918d 100644 (file)
@@ -1,46 +1,39 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
-       <title>jQuery UI Button - Radio Buttons demo</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.button.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <script type="text/javascript">
+       <meta charset="utf-8">
+       <title>jQuery UI Button - Radios</title>
+       <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.button.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <script>
        $(function() {
-               $("#radio").buttonset();
+               $( "#radio" ).buttonset();
        });
        </script>
-       <style>
-               
-       </style>
 </head>
 <body>
 
 <div class="demo">
 
-       <form>
-               <div id="radio">
-                       <input type="radio" id="radio1" name="radio" /><label for="radio1">Choice 1</label>
-                       <input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Choice 2</label>
-                       <input type="radio" id="radio3" name="radio" /><label for="radio3">Choice 3</label>
-               </div>
-       </form>
+<form>
+       <div id="radio">
+               <input type="radio" id="radio1" name="radio" /><label for="radio1">Choice 1</label>
+               <input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Choice 2</label>
+               <input type="radio" id="radio3" name="radio" /><label for="radio3">Choice 3</label>
+       </div>
+</form>
 
 </div><!-- End demo -->
 
 
 
 <div class="demo-description">
-
 <p>A set of three radio buttons transformed into a button set.</p>
-
 </div><!-- End demo-description -->
 
-
-
 </body>
 </html>
index 7e4d660386e83e7635373f9a45efeb17f38d14e5..e1faa12af6276ebe7f4c4d5a38ef66d0420d6203 100644 (file)
@@ -1,33 +1,33 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
-       <title>jQuery UI Button - Default demo</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.button.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <script type="text/javascript">
+       <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.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.button.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <script>
        $(function() {
-               $("#rerun")
+               $( "#rerun" )
                        .button()
-                       .click( function() {
+                       .click(function() {
                                alert( "Running the last action" );
                        })
-               .next()
-                       .button( {
-                               text: false,
-                               icons: {
-                                       primary: "ui-icon-triangle-1-s"
-                               }
-                       })
-                       .click( function() {
-                               alert( "Could display a menu to select an action" );
-                       })
-               .parent()
-                       .buttonset();
+                       .next()
+                               .button( {
+                                       text: false,
+                                       icons: {
+                                               primary: "ui-icon-triangle-1-s"
+                                       }
+                               })
+                               .click(function() {
+                                       alert( "Could display a menu to select an action" );
+                               })
+                               .parent()
+                                       .buttonset();
        });
        </script>
        <style>
 
 <div class="demo">
 
-       <div>
-               <button id="rerun">Run last action</button>
-               <button id="select">Select an action</button>
-       </div>
+<div>
+       <button id="rerun">Run last action</button>
+       <button id="select">Select an action</button>
+</div>
 
 </div><!-- End demo -->
 
 
 
 <div class="demo-description">
-
-<p>An example of a split button built with two buttons: A plan button with just text, one with only a primary icon
-and no text. Both are grouped together in a set.</p>
-
+<p>An example of a split button built with two buttons: A plan 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 -->
 
-
-
 </body>
 </html>
index 5573872a763e23714ff9850e1c41aca48ccf9093..a03036451bf98d898fd1f739b478a64bba79ebdc 100644 (file)
@@ -1,86 +1,86 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-       <meta charset="UTF-8" />
-       <title>jQuery UI Button - Toolbar demo</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.button.js"></script>
-       <link type="text/css" href="../demos.css" rel="stylesheet" />
-       <style type="text/css">
+       <meta charset="utf-8">
+       <title>jQuery UI Button - Toolbar</title>
+       <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.button.js"></script>
+       <link rel="stylesheet" href="../demos.css">
+       <style>
        #toolbar {
                padding: 10px 4px;
        }
        </style>
-       <script type="text/javascript">
+       <script>
        $(function() {
-               $('#beginning').button({
+               $( "#beginning" ).button({
                        text: false,
                        icons: {
-                               primary: 'ui-icon-seek-start'
+                               primary: "ui-icon-seek-start"
                        }
                });
-               $('#rewind').button({
+               $( "#rewind" ).button({
                        text: false,
                        icons: {
-                               primary: 'ui-icon-seek-prev'
+                               primary: "ui-icon-seek-prev"
                        }
                });
-               $('#play').button({
+               $( "#play" ).button({
                        text: false,
                        icons: {
-                               primary: 'ui-icon-play'
+                               primary: "ui-icon-play"
                        }
                })
                .click(function() {
                        var options;
-                       if ($(this).text() == 'play') {
+                       if ( $( this ).text() === "play" ) {
                                options = {
-                                       label: 'pause',
+                                       label: "pause",
                                        icons: {
-                                               primary: 'ui-icon-pause'
+                                               primary: "ui-icon-pause"
                                        }
                                };
                        } else {
                                options = {
-                                       label: 'play',
+                                       label: "play",
                                        icons: {
-                                               primary: 'ui-icon-play'
+                                               primary: "ui-icon-play"
                                        }
                                };
                        }
-                       $(this).button('option', options);
+                       $( this ).button( "option", options );
                });
-               $('#stop').button({
+               $( "#stop" ).button({
                        text: false,
                        icons: {
-                               primary: 'ui-icon-stop'
+                               primary: "ui-icon-stop"
                        }
                })
                .click(function() {
-                       $('#play').button('option', {
-                               label: 'play',
+                       $( "#play" ).button( "option", {
+                               label: "play",
                                icons: {
-                                       primary: 'ui-icon-play'
+                                       primary: "ui-icon-play"
                                }
                        });
                });
-               $('#forward').button({
+               $( "#forward" ).button({
                        text: false,
                        icons: {
-                               primary: 'ui-icon-seek-next'
+                               primary: "ui-icon-seek-next"
                        }
                });
-               $('#end').button({
+               $( "#end" ).button({
                        text: false,
                        icons: {
-                               primary: 'ui-icon-seek-end'
+                               primary: "ui-icon-seek-end"
                        }
                });
-               $("#shuffle").button();
-               $("#repeat").buttonset();
+               $( "#shuffle" ).button();
+               $( "#repeat" ).buttonset();
        });
        </script>
 </head>
 
 <div class="demo">
 
-       <span id="toolbar" class="ui-widget-header ui-corner-all">
-               <button id="beginning">go to beginning</button>
-               <button id="rewind">rewind</button>
-               <button id="play">play</button>
-               <button id="stop">stop</button>
-               <button id="forward">fast forward</button>
-               <button id="end">go to end</button>
-               
-               <input type="checkbox" id="shuffle" /><label for="shuffle">Shuffle</label>
-               
-               <span id="repeat">
-                       <input type="radio" id="repeat0" name="repeat" checked="checked" /><label for="repeat0">No Repeat</label>
-                       <input type="radio" id="repeat1" name="repeat" /><label for="repeat1">Once</label>
-                       <input type="radio" id="repeatall" name="repeat" /><label for="repeatall">All</label>
-               </span>
+<span id="toolbar" class="ui-widget-header ui-corner-all">
+       <button id="beginning">go to beginning</button>
+       <button id="rewind">rewind</button>
+       <button id="play">play</button>
+       <button id="stop">stop</button>
+       <button id="forward">fast forward</button>
+       <button id="end">go to end</button>
+       
+       <input type="checkbox" id="shuffle" /><label for="shuffle">Shuffle</label>
+       
+       <span id="repeat">
+               <input type="radio" id="repeat0" name="repeat" checked="checked" /><label for="repeat0">No Repeat</label>
+               <input type="radio" id="repeat1" name="repeat" /><label for="repeat1">Once</label>
+               <input type="radio" id="repeatall" name="repeat" /><label for="repeatall">All</label>
        </span>
+</span>
 
 </div><!-- End demo -->
 
 
 
 <div class="demo-description">
-
 <p>
        A mediaplayer toolbar. Take a look at the underlying markup: A few button elements,
        an input of type checkbox for the Shuffle button, and three inputs of type radio for the Repeat options. 
 </p>
-
 </div><!-- End demo-description -->
 
-
-
 </body>
 </html>