$scope.deleteSelectedKey = function(selectedKey) {
        $scope.keys.push(selectedKey);
        $scope.selectedKeys = $scope.selectedKeys.filter(function(e) {
            return selectedKey !== e;
        });