removing makeUrl function

This commit is contained in:
Shelby Sturgis 2016-03-17 11:22:05 -07:00
parent ccdfb207cb
commit 1ddc94d3b6

View file

@ -16,12 +16,6 @@ module.directive('breadCrumbs', function () {
// Remove the empty string from the end of the array
$scope.crumbs.pop();
}
$scope.makeUrl = function (val) {
if ($scope.userMakeUrl) {
return $scope.userMakeUrl(val);
}
};
}
};
});