From c79bc7f0400e5d98b9b8dba0b92ee7301f06d016 Mon Sep 17 00:00:00 2001 From: Alexander Schmitz Date: Wed, 13 May 2015 22:34:05 -0400 Subject: [PATCH] Progressbar: Remove core event/alias and deprecated module dependencies --- demos/progressbar/download.html | 4 ++-- 1 file 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" ); } });