Skip to content

Instantly share code, notes, and snippets.

View piotrjaworski's full-sized avatar

Piotr Jaworski piotrjaworski

View GitHub Profile
var app = angular.module('app');
app.controller('CustomerController', ['$scope', '$stateParams', '$http', '$modal', 'Customer', 'Repair',
function($scope, $stateParams, $http, $modal, Customer, Repair) {
$scope.customer = {};
$scope.repairs = [];
$scope.repair = {};
$scope.new_repair = {};
$scope.repair_statuses = {};
$scope.repairId = null;