Blame view
app/partials/updateFuelManager/updateFuelManager.controller.js
525 Bytes
feacde5ff
|
1 2 3 4 5 |
'use strict'; //Load controller angular.module('acufuel') |
feacde5ff
|
6 |
|
4bb02bb84
|
7 8 9 10 11 12 13 14 15 16 17 |
.controller('updateFuelManagerController', ['$scope','$uibModal', function($scope , $uibModal) { console.log("$uibModal",$uibModal); $scope.yes = function(data){ console.log('========'); console.log('value', data); $uibModal.yes({ templateUrl: 'partials/pricingcontact/pricingcontact.html', backdrop: true, scope: $scope, }) } |
feacde5ff
|
18 19 |
}]); |