diff options
Diffstat (limited to 'demos/button/icons.html')
-rw-r--r-- | demos/button/icons.html | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/demos/button/icons.html b/demos/button/icons.html index a8deca9cd..af4e3000c 100644 --- a/demos/button/icons.html +++ b/demos/button/icons.html @@ -5,13 +5,9 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery UI Button - Icons</title> <link rel="stylesheet" href="../../themes/base/all.css"> - <script src="../../external/jquery/jquery.js"></script> - <script src="../../ui/core.js"></script> - <script src="../../ui/widget.js"></script> - <script src="../../ui/button.js"></script> <link rel="stylesheet" href="../demos.css"> - <script> - $( function() { + <script src="../../external/requirejs/require.js"></script> + <script src="../bootstrap.js"> $( ".widget button" ).first() .button() .next().button( { @@ -29,7 +25,6 @@ icon: "ui-icon-gear", iconPosition: "bottom" } ); - } ); </script> </head> <body> @@ -41,7 +36,6 @@ <button>Button with icon on the right</button> <button>Button with icon on the top</button> <button>Button with icon on the bottom</button> - <button>Button with icon on the top</button> </div> <div class="css"> <h1>CSS</h1> |