diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2014-01-22 12:02:32 -0500 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-10-07 10:57:59 -0400 |
commit | 02033262ee0fb1d9f33c361b3c2ddfa168604854 (patch) | |
tree | 645ed2427d14a598d02754b79e9eb8b889baf846 /tests/visual/button | |
parent | 79d312f3f5cb5629d1bd7f9f899b41f304c388ef (diff) | |
download | jquery-ui-02033262ee0fb1d9f33c361b3c2ddfa168604854.tar.gz jquery-ui-02033262ee0fb1d9f33c361b3c2ddfa168604854.zip |
Button: Initial commit of button re-factor
Move to using element stats rather then js class states remove
ui-button-text spans.
Removed button set
Diffstat (limited to 'tests/visual/button')
-rw-r--r-- | tests/visual/button/button.html | 28 |
1 files changed, 3 insertions, 25 deletions
diff --git a/tests/visual/button/button.html b/tests/visual/button/button.html index 1d82cf665..bb80d8a85 100644 --- a/tests/visual/button/button.html +++ b/tests/visual/button/button.html @@ -10,17 +10,13 @@ $( this ).children() .eq( 0 ) .button({ - text: false, - icons: { - primary: "ui-icon-help" - } + showLabel: false, + icon: "ui-icon-help" }) .end() .eq( 1 ) .button({ - icons: { - primary: "ui-icon-help" - }, + icon: "ui-icon-help", disabled: true }) .end() @@ -62,24 +58,6 @@ </div> <div class="buttons"> - <input type="checkbox" id="input-checkbox0"> - <input type="checkbox" id="input-checkbox1"> - <input type="checkbox" id="input-checkbox2"> - <label for="input-checkbox0">input checkbox</label> - <label for="input-checkbox1">input checkbox</label> - <label for="input-checkbox2">input checkbox</label> -</div> - -<div class="buttons"> - <input type="radio" id="input-radio0" name="radio"> - <input type="radio" id="input-radio1" name="radio"> - <input type="radio" id="input-radio2" name="radio"> - <label for="input-radio0">input radio</label> - <label for="input-radio1">input radio</label> - <label for="input-radio2">input radio</label> -</div> - -<div class="buttons"> <a href="#">anchor</a> <a href="#">anchor</a> <a href="#">anchor</a> |