Progressbar: Remove core event/alias and deprecated module dependencies

This commit is contained in:
Alexander Schmitz 2015-05-13 22:34:05 -04:00
parent ba37ca9ea5
commit c79bc7f040

View File

@ -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>