pricingTableCtrl.js 222 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 'use strict'; angular.module('newApp') .controller('pricingTableCtrl', function ($scope, pricingTableService) { $scope.$on('$viewContentLoaded', function () { pricingTableService.init(); }); });