Skip to content

Instantly share code, notes, and snippets.

@Seich
Last active August 29, 2015 14:12
Show Gist options
  • Save Seich/08873241e4130d0eecb2 to your computer and use it in GitHub Desktop.
Save Seich/08873241e4130d0eecb2 to your computer and use it in GitHub Desktop.
'use strict';
function DischargeDestinationController($routeParams, $scope) {
this.query = {
name: '-',
distance: '-',
zipCode: '-'
};
$scope.$watch('???', function() {
});
}
angular.module('app')
.controller('DischargeDestinationController', DischargeDestinationController);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment