diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-13 21:57:04 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-20 14:27:55 -0400 |
commit | be0a176b1f399e856654b2e71a1a9df28501a646 (patch) | |
tree | f9500a587b21cee75b23ec23d81b1e1d6a7ebb18 /tests/visual/dialog/performance.html | |
parent | 183422bd9f9a1431e51b427c704c6bcd0583bea6 (diff) | |
download | jquery-ui-be0a176b1f399e856654b2e71a1a9df28501a646.tar.gz jquery-ui-be0a176b1f399e856654b2e71a1a9df28501a646.zip |
Dialog: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'tests/visual/dialog/performance.html')
-rw-r--r-- | tests/visual/dialog/performance.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/visual/dialog/performance.html b/tests/visual/dialog/performance.html index 37ff93238..e01098ad1 100644 --- a/tests/visual/dialog/performance.html +++ b/tests/visual/dialog/performance.html @@ -26,7 +26,7 @@ }); $( "<li>Create: " + ($.now() - start) + "ms</li>" ).appendTo( "#log" ); - $( "#opener" ).click(function() { + $( "#opener" ).on( "click", function() { start = $.now(); $( "#dialog" ).dialog( "open" ); $( "<li>Open: " + ($.now() - start) + "ms</li>" ).appendTo( "#log" ); |