kopia lustrzana https://github.com/cyoung/stratux
10 wiersze
443 B
JavaScript
10 wiersze
443 B
JavaScript
![]() |
angular.module('appControllers').controller('DeveloperCtrl', DeveloperCtrl); // get the main module contollers set
|
||
|
DeveloperCtrl.$inject = ['$rootScope', '$scope', '$state', '$http', '$interval']; // Inject my dependencies
|
||
|
|
||
|
// create our controller function with all necessary logic
|
||
|
function DeveloperCtrl($rootScope, $scope, $state, $http, $interval) {
|
||
|
$scope.$parent.helppage = 'plates/developer-help.html';
|
||
|
$scope.data_list = [];
|
||
|
};
|
||
|
|