diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/autocomplete/combobox.html | 6 | ||||
-rw-r--r-- | demos/tooltip/video-player.html | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html index 9fc997c11..afe301349 100644 --- a/demos/autocomplete/combobox.html +++ b/demos/autocomplete/combobox.html @@ -78,10 +78,8 @@ .tooltip() .appendTo( this.wrapper ) .button({ - icons: { - primary: "ui-icon-triangle-1-s" - }, - text: false + icon: "ui-icon-triangle-1-s", + showLabel: false }) .removeClass( "ui-corner-all" ) .addClass( "custom-combobox-toggle ui-corner-right" ) diff --git a/demos/tooltip/video-player.html b/demos/tooltip/video-player.html index 74db642aa..c7601b747 100644 --- a/demos/tooltip/video-player.html +++ b/demos/tooltip/video-player.html @@ -63,10 +63,8 @@ $( "button" ).each(function() { var button = $( this ).button({ - icons: { - primary: $( this ).data( "icon" ) - }, - text: !!$( this ).attr( "title" ) + icon: $( this ).data( "icon" ), + showLabel: !!$( this ).attr( "title" ) }); button.not( ".menu" ).on( "click", function() { notify( button ); |