Improve File Explorer styling.

This commit is contained in:
Gunther Brunner
2015-10-01 18:50:41 +09:00
parent 065f06edac
commit 2f3de3f516
2 changed files with 40 additions and 18 deletions

View File

@@ -5,13 +5,14 @@ module.exports = function ExplorerCtrl($scope) {
var listDir = function () {
var path = '/' + $scope.paths.join('/')
$scope.control.fslist(path)
.then(function (result) {
$scope.files = result.body;
$scope.$digest();
})
.catch(function (err) {
alert(err.message);
alert(err.message)
})
}