componentsCtrl.js 228 Bytes Raw Blame History Permalink 1 2 3 4 5 6 angular.module('newApp') .controller('componentsCtrl', ['$scope', 'pluginsService', function ($scope, pluginsService) { $scope.$on('$viewContentLoaded', function () { pluginsService.init(); }); }]);