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

Commit

Permalink
core: run "yarn format"
Browse files Browse the repository at this point in the history
Change-Id: Ib098279af9e892aad6c3aa2a32fa5b87b709dd22
  • Loading branch information
andi34 committed Jun 16, 2022
1 parent 769fc5f commit 2c9b381
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/js/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,8 @@ const photoBooth = (function () {
api.startCountdown = function (start, element, cb) {
let count = 0;
let current = start;
const stop = start > parseInt(config.preview.stop_time, 10) ? start - parseInt(config.preview.stop_time, 10) : start;
const stop =
start > parseInt(config.preview.stop_time, 10) ? start - parseInt(config.preview.stop_time, 10) : start;

function timerFunction() {
element.text(Number(current) + Number(config.picture.cntdwn_offset));
Expand Down

0 comments on commit 2c9b381

Please sign in to comment.