aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/dialog/form.html
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-05-13 21:57:04 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-05-20 14:27:55 -0400
commitbe0a176b1f399e856654b2e71a1a9df28501a646 (patch)
treef9500a587b21cee75b23ec23d81b1e1d6a7ebb18 /tests/visual/dialog/form.html
parent183422bd9f9a1431e51b427c704c6bcd0583bea6 (diff)
downloadjquery-ui-be0a176b1f399e856654b2e71a1a9df28501a646.tar.gz
jquery-ui-be0a176b1f399e856654b2e71a1a9df28501a646.zip
Dialog: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'tests/visual/dialog/form.html')
-rw-r--r--tests/visual/dialog/form.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/visual/dialog/form.html b/tests/visual/dialog/form.html
index eab41cdbe..42d40f1f4 100644
--- a/tests/visual/dialog/form.html
+++ b/tests/visual/dialog/form.html
@@ -23,11 +23,11 @@
modal: true
});
- $( "#open-form" ).click(function() {
+ $( "#open-form" ).on( "click", function() {
$( "#form-dialog" ).dialog( "open" );
});
- $( "#open-prompt" ).click(function() {
+ $( "#open-prompt" ).on( "click", function() {
$( "#prompt-dialog" ).dialog( "open" );
});
});