Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.

Commit

Permalink
added missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
up-87 authored and andi34 committed Apr 5, 2022
1 parent 5824645 commit e10c3a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ const photoBooth = (function () {
if (triggerPic[0] || triggerCollage[0]) {
if (config.picture.key && parseInt(config.picture.key, 10) === ev.keyCode) {
if (takingPic) {
api.handleButtonPressWhileTakingPic()
api.handleButtonPressWhileTakingPic();
} else {
$('.closeGallery').trigger('click');
if (config.collage.enabled && config.collage.only) {
Expand All @@ -1343,7 +1343,7 @@ const photoBooth = (function () {

if (config.collage.key && parseInt(config.collage.key, 10) === ev.keyCode) {
if (takingPic) {
api.handleButtonPressWhileTakingPic()
api.handleButtonPressWhileTakingPic();
} else {
$('.closeGallery').trigger('click');
if (config.collage.enabled) {
Expand Down

0 comments on commit e10c3a6

Please sign in to comment.