Skip to content

Commit

Permalink
fix: removed the fill_all_points function that isn't there
Browse files Browse the repository at this point in the history
  • Loading branch information
akeshavan committed Feb 2, 2018
1 parent aa80efd commit 741dd72
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions imports/ui/qc.js
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,11 @@ Template.view_images.events({
update["quality_check"] = form_data
update["checkedBy"] = Meteor.user().username
update["checkedAt"] = new Date()
update["confidence"] = parseInt($("#conf")[0].value)
try {
update["confidence"] = parseInt($("#conf")[0].value)
} catch (e) {

}

vote_entry = {quality_check: update.quality_check,
checkedBy: update.checkedBy,
Expand Down Expand Up @@ -806,7 +810,7 @@ Template.view_images.events({
var viewer = papayaContainers[0].viewer
draw_point(screenCoor, viewer, "rgb(0,0,255)", 3)
})*/
fill_all_points(this.matrix_coor)
//fill_all_points(this.matrix_coor)
fill_all(template)

},
Expand Down

0 comments on commit 741dd72

Please sign in to comment.