Skip to content

Commit

Permalink
trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
judemont committed May 17, 2024
1 parent c5dd3e1 commit 1154fd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
teachers_data.json
secrets.php
secrets.php
.trunk
4 changes: 2 additions & 2 deletions scripts/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function openRatingPopup(popupId, profId) {
parseFloat(document.getElementById("ratingTeachingQuality").value),
parseFloat(document.getElementById("ratingKindness").value),
parseFloat(document.getElementById("ratingAuthority").value),
parseFloat(document.getElementById("ratingHumor").value)
parseFloat(document.getElementById("ratingHumor").value),
).then(() => {
closePopup(popupId);
getTeachers("").then(function (teachers) {
Expand All @@ -39,7 +39,7 @@ function openRatingPopup(popupId, profId) {
function onCommentSend(profId) {
sendComment(
document.getElementById("commentContentInput").value,
profId
profId,
).then(() => {
getComments(profId).then(function (comments) {
loadComments(comments);
Expand Down

0 comments on commit 1154fd6

Please sign in to comment.