Skip to content

Commit

Permalink
Adding progress bar boundary
Browse files Browse the repository at this point in the history
  • Loading branch information
irux committed Apr 25, 2019
1 parent cd25c79 commit 5b319bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notes.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function editActualTodo(){
console.log("Here 1")

//We check if the fields are pre fill
if(!title.checkValidity() || !description.checkValidity() || (date_picker_edit.value() == "" || date_picker_edit.value() == undefined))
if(!title.checkValidity() || !description.checkValidity() || (date_picker_edit.value() == "" || date_picker_edit.value() == undefined) || !progress.checkValidity())
return;


Expand Down

0 comments on commit 5b319bb

Please sign in to comment.