1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

Remove debugging code line

This commit is contained in:
Marliana Lara 2017-06-15 16:16:46 -04:00
parent 850df5c646
commit e407a79af8
2 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,7 @@ export default ['templateUrl', function(templateUrl) {
$('#instance-groups-modal').off('hidden.bs.modal');
$(element).remove();
});
scope.showModal = function() {
$('#instance-groups-modal').modal('show');
};

View File

@ -9,7 +9,6 @@ export default ['$scope',
$scope.deleteTag = function(tag){
_.remove($scope.instanceGroups, {id: tag.id});
console.log($scope.instanceGroups);
}
}
];