Fixes: U4-7654 Recycle bin now display a input instead of a readonly heading

This commit is contained in:
Mads Rasmussen
2016-01-07 21:10:04 +01:00
parent 896eda1022
commit e64f0fc5c5
2 changed files with 10 additions and 4 deletions

View File

@@ -3,14 +3,20 @@
function EditorViewDirective() {
function link(scope, el, attr) {
if(attr.footer) {
scope.footer = attr.footer;
}
}
var directive = {
transclude: true,
restrict: 'E',
replace: true,
templateUrl: 'views/components/editor/umb-editor-view.html',
scope: {
footer: "@"
}
link: link
};
return directive;

View File

@@ -153,7 +153,7 @@
on-get-content="reloadView">
</umb-list-view-layout>
<umb-load-indicator ng-if="!viewLoaded"></umb-load-indicator>
<umb-load-indicator ng-show="!viewLoaded"></umb-load-indicator>
<umb-pagination
ng-if="listViewResultSet.totalPages"