diff options
author | Kris Borchers <kris.borchers@gmail.com> | 2012-09-20 07:39:04 -0500 |
---|---|---|
committer | Kris Borchers <kris.borchers@gmail.com> | 2012-09-20 07:39:04 -0500 |
commit | 9fbbd01492786df688a69632fafe8ecf43fd7abd (patch) | |
tree | 251d83af247ec287210227545ea2a586af4dbfa7 /demos | |
parent | 92e1e83eca6b3d2bf152367643aad7f72aa11592 (diff) | |
download | jquery-ui-9fbbd01492786df688a69632fafe8ecf43fd7abd.tar.gz jquery-ui-9fbbd01492786df688a69632fafe8ecf43fd7abd.zip |
Button demos: Fix selector since demo wrapper div was removed
Diffstat (limited to 'demos')
-rw-r--r-- | demos/button/icons.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/button/icons.html b/demos/button/icons.html index ee42063b3..7f0bb49c4 100644 --- a/demos/button/icons.html +++ b/demos/button/icons.html @@ -11,7 +11,7 @@ <link rel="stylesheet" href="../demos.css"> <script> $(function() { - $( ".demo button:first" ).button({ + $( "button:first" ).button({ icons: { primary: "ui-icon-locked" }, |