Blame view

app/partials/main/main.controller.js 271 Bytes
feacde5ff   Rishav   setup acuefuel in...
1
2
3
4
5
6
7
8
  
  (function() {
      'use strict'
      
      angular.module('acufuel')
          .controller('MainController', [ '$scope', '$filter', '$rootScope', '$state', MainController]);
          
      function MainController($scope, $filter, $rootScope, $state) {
dd378d69f   Mr. Hot Foods   changes in flight...
9
       
feacde5ff   Rishav   setup acuefuel in...
10
11
12
      	
      }
  })();