diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 00:04:13 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 08:06:22 -0400 |
commit | b7278a3968d9ac6332958811317865a412a9f39b (patch) | |
tree | 6803243f93375406ab88836c319577a6546272a1 /tests/unit | |
parent | 1f6ea8b78ac859bfecbdcdd092c2df3e2eec90ed (diff) | |
download | jquery-ui-b7278a3968d9ac6332958811317865a412a9f39b.tar.gz jquery-ui-b7278a3968d9ac6332958811317865a412a9f39b.zip |
Tooltip: Style updates
Ref #14246
Ref gh-1588
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/tooltip/common-deprecated.js | 2 | ||||
-rw-r--r-- | tests/unit/tooltip/common.js | 2 | ||||
-rw-r--r-- | tests/unit/tooltip/methods.js | 2 | ||||
-rw-r--r-- | tests/unit/tooltip/options.js | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/tooltip/common-deprecated.js b/tests/unit/tooltip/common-deprecated.js index 9e3c5ef59..75a688f0a 100644 --- a/tests/unit/tooltip/common-deprecated.js +++ b/tests/unit/tooltip/common-deprecated.js @@ -21,7 +21,7 @@ common.testWidget( "tooltip", { tooltipClass: null, track: false, - // callbacks + // Callbacks close: null, create: null, open: null diff --git a/tests/unit/tooltip/common.js b/tests/unit/tooltip/common.js index 77e3f02b8..15c9dfad8 100644 --- a/tests/unit/tooltip/common.js +++ b/tests/unit/tooltip/common.js @@ -20,7 +20,7 @@ common.testWidget( "tooltip", { show: true, track: false, - // callbacks + // Callbacks close: null, create: null, open: null diff --git a/tests/unit/tooltip/methods.js b/tests/unit/tooltip/methods.js index b5b6ca6e9..d4c56e1f3 100644 --- a/tests/unit/tooltip/methods.js +++ b/tests/unit/tooltip/methods.js @@ -13,7 +13,7 @@ test( "destroy", function( assert ) { element.tooltip().tooltip( "destroy" ); }); - // make sure that open tooltips are removed on destroy + // Make sure that open tooltips are removed on destroy assert.domEqual( "#tooltipped1", function() { element .tooltip() diff --git a/tests/unit/tooltip/options.js b/tests/unit/tooltip/options.js index 6aa576583..2833e68dd 100644 --- a/tests/unit/tooltip/options.js +++ b/tests/unit/tooltip/options.js @@ -161,7 +161,7 @@ test( "items", function() { element.tooltip( "open", event ); deepEqual( $( "#" + $( "#fixture-span" ).data( "ui-tooltip-id" ) ).text(), "title-text" ); - // make sure default [title] doesn't get used + // Make sure default [title] doesn't get used event.target = $( "#tooltipped1" )[ 0 ]; element.tooltip( "open", event ); deepEqual( $( "#tooltipped1" ).data( "ui-tooltip-id" ), undefined ); |