add sanitize function to accept url from the request response - enable edit on dbclick - improve html
(function(){
'use strict';
angular.module('ammico')
.controller('routeClassCtrl', function($scope, $location) {
$scope.isActive = function(route) {
return route === $location.path();
};
});
})();