pip-webui
Version:
HTML5 UI for LOB applications
28 lines (22 loc) • 924 B
JavaScript
(function (angular) {
var thisModule = angular.module('eventsModule', []);
thisModule.controller('eventsController', function($scope, pipAppBar, $mdMedia) {
// Show page title
pipAppBar.showTitleText('Events');
// Show menu icon to open sidenav
pipAppBar.showMenuNavIcon();
// Show local page actions
pipAppBar.showLocalActions();
// Add shadow under the appbar
pipAppBar.hideShadow();
// Initialize service for changing layouts when the screen size changed
$scope.$mdMedia = $mdMedia;
// Get test data
$scope.events = $scope.dataSet.get('EventsTestCollection').getAll();
$scope.iconColors = {
'warn-circle': '#EF5350',
'info-circle-outline': '#8BC34A',
'warn-triangle': '#FFD54F'
};
});
})(window.angular);