diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-24 08:50:46 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-09-11 08:29:07 -0400 |
commit | a0892eca70b59238e40082cc7c2e5a042fb5bae9 (patch) | |
tree | 26c813093eb5df09797df2819b05957d046be884 /tests/unit/tooltip/deprecated.js | |
parent | cfd48ed037db9a573a3495cb2fae773e3de9bb38 (diff) | |
download | jquery-ui-a0892eca70b59238e40082cc7c2e5a042fb5bae9.tar.gz jquery-ui-a0892eca70b59238e40082cc7c2e5a042fb5bae9.zip |
Tooltip: Style updates
Ref #14246
Diffstat (limited to 'tests/unit/tooltip/deprecated.js')
-rw-r--r-- | tests/unit/tooltip/deprecated.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/tooltip/deprecated.js b/tests/unit/tooltip/deprecated.js index b1325057b..7fc7d91a4 100644 --- a/tests/unit/tooltip/deprecated.js +++ b/tests/unit/tooltip/deprecated.js @@ -7,10 +7,10 @@ module( "tooltip: (deprecated) options" ); test( "tooltipClass", function( assert ) { expect( 1 ); - var element = $( "#tooltipped1" ).tooltip({ + var element = $( "#tooltipped1" ).tooltip( { tooltipClass: "custom" - }).tooltip( "open" ); + } ).tooltip( "open" ); assert.hasClasses( $( "#" + element.data( "ui-tooltip-id" ) ), "custom" ); -}); +} ); } ); |