aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual
diff options
context:
space:
mode:
authorRichard D. Worth <rdworth@gmail.com>2010-05-26 15:08:37 -0400
committerRichard D. Worth <rdworth@gmail.com>2010-05-26 15:08:37 -0400
commit202ddd0c58933e80b60373690412d2103b60388b (patch)
treee22001e7001c0f9ca65de46801cc0eb2fbcf80f8 /tests/visual
parente815e7c1e49632651052e80e2360fde1a43b0f80 (diff)
downloadjquery-ui-202ddd0c58933e80b60373690412d2103b60388b.tar.gz
jquery-ui-202ddd0c58933e80b60373690412d2103b60388b.zip
Button: Removed ui-button-text-icon class. Added ui-button-text-icon-primary and ui-button-text-icon-secondary classes. Fixed #5382 - Button: specifying only a secondary icon for the button widget locates the icon on the left
Diffstat (limited to 'tests/visual')
-rw-r--r--tests/visual/button/button.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/visual/button/button.html b/tests/visual/button/button.html
index 7575eadf1..de0bb3ab9 100644
--- a/tests/visual/button/button.html
+++ b/tests/visual/button/button.html
@@ -58,9 +58,9 @@
<div>
With icon
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
- <button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
- <button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
- <button class="{button:{icons:{secondary:'ui-icon-triangle-1-s'}}}">Button with text and secondary icon</button>
+ <button class="{button:{icons:{primary:'ui-icon-locked'}}}">Primary icon</button>
+ <button class="{button:{icons:{secondary:'ui-icon-triangle-1-s'}}}">Secondary icon</button>
+ <button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Both icons</button>
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons and no text</button>
</div>
</div>