diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-13 22:02:14 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-20 14:27:57 -0400 |
commit | 24f1ce9ea046607ae9d0611aefbe5bbd636f8d32 (patch) | |
tree | 3cb4d72e90061a7c88c614e2ff80244bc7c48e4e /demos/tooltip/forms.html | |
parent | c25a541fc414bc46a2ab6911ca2a09a1c772c999 (diff) | |
download | jquery-ui-24f1ce9ea046607ae9d0611aefbe5bbd636f8d32.tar.gz jquery-ui-24f1ce9ea046607ae9d0611aefbe5bbd636f8d32.zip |
Tooltip: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'demos/tooltip/forms.html')
-rw-r--r-- | demos/tooltip/forms.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/tooltip/forms.html b/demos/tooltip/forms.html index d93c004ba..4a593ef51 100644 --- a/demos/tooltip/forms.html +++ b/demos/tooltip/forms.html @@ -36,7 +36,7 @@ $( "<button>" ) .text( "Show help" ) .button() - .click(function() { + .on( "click", function() { tooltips.tooltip( "open" ); }) .insertAfter( "form" ); |