Skip to content

Commit

Permalink
Fixed Missing Semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
platosha committed Feb 11, 2016
1 parent e4137ce commit 61815ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demo/advanced.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h4>Files List</h4>

switch (event.type) {
case 'upload-success':
status.textContent = 'Uploaded.'
status.textContent = 'Uploaded.';
break;
case 'upload-error':
status.textContent = file.error;
Expand Down
2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ <h3>Files Count, Type and Size Limits, Reject File Event</h3>
var toast = document.querySelector('paper-toast#rejectToast');

upload.addEventListener('file-reject', function(event) {
toast.text = event.detail.file.name + ' error: ' + event.detail.error
toast.text = event.detail.file.name + ' error: ' + event.detail.error;
toast.open();
});
</script>
Expand Down

0 comments on commit 61815ff

Please sign in to comment.