aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-05-13 22:34:05 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-05-20 14:27:58 -0400
commitc79bc7f0400e5d98b9b8dba0b92ee7301f06d016 (patch)
tree24065e97c4a9726a963449e6b036a96022bd38bf /demos
parentba37ca9ea59149a87127a718432a899334cbb443 (diff)
downloadjquery-ui-c79bc7f0400e5d98b9b8dba0b92ee7301f06d016.tar.gz
jquery-ui-c79bc7f0400e5d98b9b8dba0b92ee7301f06d016.zip
Progressbar: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'demos')
-rw-r--r--demos/progressbar/download.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/progressbar/download.html b/demos/progressbar/download.html
index 7e197d571..1253176a4 100644
--- a/demos/progressbar/download.html
+++ b/demos/progressbar/download.html
@@ -59,7 +59,7 @@
text: "Close",
click: closeDownload
}]);
- $(".ui-dialog button").last().focus();
+ $(".ui-dialog button").last().trigger( "focus" );
}
});
@@ -81,7 +81,7 @@
progressbar.progressbar( "value", false );
progressLabel
.text( "Starting download..." );
- downloadButton.focus();
+ downloadButton.trigger( "focus" );
}
});
</script>