16 lines
649 B
JSON
Executable File
16 lines
649 B
JSON
Executable File
// angular-controller.js
|
|
colorAdminApp.controller('pageWithFixedFooterController', function ($scope, $rootScope, $state) {
|
|
$rootScope.setting.layout.appContentFullHeight = true;
|
|
$rootScope.setting.layout.appContentClass = 'p-0';
|
|
});
|
|
|
|
// views.html
|
|
<div ng-controller="pageWithFixedFooterController" class="d-flex flex-column p-0 h-100">
|
|
<div class="app-content-padding flex-grow-1 overflow-hidden" data-scrollbar="true" data-height="100%">
|
|
...
|
|
</div>
|
|
|
|
<div id="footer" class="app-footer m-0">
|
|
&copy; 2024 Color Admin Responsive Admin Template - Sean Ngu All Rights Reserved
|
|
</div>
|
|
</div> |