Blame view

app/partials/DispatchFuel/DispatchFuel.controller.js 176 Bytes
4bb02bb84   Rishav   new integration w...
1
2
3
4
5
6
7
8
9
10
  'use strict';
  
   //Load controller
    angular.module('acufuel')
  
  	.controller('DispatchFuelController', ['$scope',function($scope) {
  
        $scope.test = "Testing...";
  
      }]);