GUAC-963: Scroll file transfer into view when menu is shown.

This commit is contained in:
Michael Jumper
2015-01-02 02:34:39 -08:00
parent 8c4a0e7854
commit 2423422340
4 changed files with 118 additions and 3 deletions

View File

@@ -385,11 +385,14 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams
$scope.page.title = name;
});
// Show menu if new file transfers have started
// Show file transfer section of menu if new file transfers have started
$scope.$watch('client.uploads.length + client.downloads.length', function transfersChanged(count, oldCount) {
if (count > oldCount)
// Show menu and scroll file transfer into view
if (count > oldCount) {
$scope.menuShown = true;
$scope.fileTransferMarker.scrollIntoView();
}
});

View File

@@ -69,7 +69,7 @@
</div>
<!-- File transfers -->
<h3>{{'CLIENT.SECTION_HEADER_FILE_TRANSFERS' | translate}}</h3>
<h3 guac-marker="fileTransferMarker">{{'CLIENT.SECTION_HEADER_FILE_TRANSFERS' | translate}}</h3>
<div class="content" id="file-transfers">
<guac-file-transfer-manager client="client"></guac-file-transfer-manager>
</div>