We can now show links to the address book

This commit is contained in:
Ludovic Marcotte
2014-11-25 09:36:24 -05:00
parent 8842e6f4cf
commit 25fc08a38d
5 changed files with 96 additions and 9 deletions

View File

@@ -139,6 +139,9 @@
}
});
};
$scope.currentFolderIsConfigurable = function(folder) {
return ($scope.addressbook.id == folder.id && !folder.isRemote);
};
$scope.edit = function(i) {
if (!$rootScope.addressbook.isRemote) {
if (angular.isUndefined(i)) {

View File

@@ -477,6 +477,29 @@ $column-gutter: 0;
width: 350px;
}
#addressbookLinks {
background-color: #fff;
width: 450px;
height: 135px;
cursor: none;
.title {
background-color: $secondary-color;
padding: $f-dropdown-list-padding;
text-transform: uppercase;
}
.subtitle {
background-color: #6F5A73;
padding: $f-dropdown-list-padding;
}
.value {
color: #000;
font-weight: bold;
}
}
.buttonsToolbar {
text-align: right;
.button {