Skip to content

Commit

Permalink
#99 removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
StegSchreck committed Dec 17, 2016
1 parent a3075d8 commit debe159
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion core/static/core/js/checklist_settings_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ $('document').ready( function (){
checklist_item_matchdays: matchdays_comma_seperated
};
$.post("/checklist/update_checklist_item_condition", params);
console.log(params);
elem.closest('.checklist_item_container').find('.checklist_item_saved').removeClass('invisible');
}
$('#checklist_items').on('focusout', '.checklist_item_matchdays', function() {
Expand Down
5 changes: 0 additions & 5 deletions core/views/checklist_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,6 @@ def post(self, request, *args, **kwargs):
checklist_item_matchday_pattern = request.POST.get('checklist_item_matchday_pattern')
checklist_item_home_match = request.POST.get('checklist_item_home_match')
checklist_item_everyday = request.POST.get('checklist_item_everyday')
print(checklist_item_id)
print(checklist_item_matchdays)
print(checklist_item_matchday_pattern)
print(checklist_item_home_match)
print(checklist_item_everyday)

checklist_item = ChecklistItem.objects.get(checklist__user=request.user, id=checklist_item_id)

Expand Down

0 comments on commit debe159

Please sign in to comment.