CC-3224: "On-the-fly" stream rebroadcasting

- interface implementation. subform within the show form.
This commit is contained in:
james 2012-02-08 00:04:19 -05:00 committed by James
parent ca04a7a686
commit 701ed82f40
10 changed files with 164 additions and 21 deletions

View file

@ -2,7 +2,12 @@ function showErrorSections() {
if($("#soundcloud-settings .errors").length > 0) {
$("#soundcloud-settings").show();
$(window).scrollTop($("soundcloud-settings .errors").position().top);
$(window).scrollTop($("#soundcloud-settings .errors").position().top);
}
if($("#livestream-settings .errors").length > 0) {
$("#livestream-settings").show();
$(window).scrollTop($("#livestream-settings .errors").position().top);
}
}