diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-09-16 01:48:03 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-10-08 14:02:57 -0400 |
commit | 197061be5645fd3e9b521e63ecbd13630612d8c7 (patch) | |
tree | 861f044d084b49909db44b114be279ebfd6c9387 /demos | |
parent | c5d6ea4baae74f54ab5f44239e9239a61a5f0ce9 (diff) | |
download | jquery-ui-197061be5645fd3e9b521e63ecbd13630612d8c7.tar.gz jquery-ui-197061be5645fd3e9b521e63ecbd13630612d8c7.zip |
Button: address review comments
Diffstat (limited to 'demos')
-rw-r--r-- | demos/button/icons.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/demos/button/icons.html b/demos/button/icons.html index af4e3000c..f3d4a3852 100644 --- a/demos/button/icons.html +++ b/demos/button/icons.html @@ -8,20 +8,20 @@ <link rel="stylesheet" href="../demos.css"> <script src="../../external/requirejs/require.js"></script> <script src="../bootstrap.js"> - $( ".widget button" ).first() - .button() - .next().button( { + $( ".widget button" ) + .eq( 0 ).button() + .end().eq( 1 ).button( { icon: "ui-icon-gear", showLabel: false - } ).next().button( { + } ).end().eq( 2 ).button( { icon: "ui-icon-gear" - } ).next().button( { + } ).end().eq( 3 ).button( { icon: "ui-icon-gear", iconPosition: "end" - } ).next().button( { + } ).end().eq( 4 ).button( { icon: "ui-icon-gear", iconPosition: "top" - } ).next().button( { + } ).end().eq( 5 ).button( { icon: "ui-icon-gear", iconPosition: "bottom" } ); |