Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Todo App/script1.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ removeButton.addEventListener('click', removeItem);
var removeAllButton = document.getElementById('removeAll');
removeAllButton.addEventListener('click', removeAllItem);


//added dismissal card

<div class="alert alert-warning alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>


function addItem (){
Expand Down