diff --git a/index.html b/index.html index ef1ab34..c8a9e1c 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,7 @@ - + @@ -322,7 +322,7 @@ d="M51.65,8H42.07A18.44,18.44,0,0,1,45,15.78h8.88l-2.2,8H45q-1,7.26-5.8,11.1T25.54,39.47L46,63.43V64H33.41L11,37.93l0-6.72H22.11a13.19,13.19,0,0,0,7.8-2.05,9.77,9.77,0,0,0,3.85-5.38H10.11l2.24-8H33.58Q31.44,9,21.93,9H10.11l2.37-9H53.89Z" /> - +
@@ -2525,8 +2525,8 @@ }, { id: 'add_person_btn', - title: 'Add a person', - details: `You can save someone's FLO ID as person for easier access in future.` + title: 'Add a contact', + details: `You can save someone's FLO ID as contact for easier access in future.` }, { id: 'request_page_btn', @@ -2563,6 +2563,7 @@ } function finishOnBoarding() { onBoardingPanel.classList.add('hide') + focusIllu.classList.add('hide') currentFeatureIndex = 0 } function nextTutorial() { @@ -2581,11 +2582,11 @@ focusIllu.classList.add('hide') } else{ - focusIllu.classList.remove('hide') prevTutButton.classList.remove('hide') + if(currentFeatureIndex) + focusIllu.classList.remove('hide') } if (index === onBoarding.length - 1) { - focusIllu.classList.add('hide') nextTutButton.textContent = `Got it` } else { @@ -2969,10 +2970,10 @@ } async function deletePerson() { - if (await confirmation('Do you want to remove this person ?', 'No', 'Remove')) { + if (await confirmation('Do you want to remove this contact ?', 'No', 'Remove')) { compactIDB.removeData('contacts', person.dataset.floId) .then(success => { - notify('Deleted person', 'success') + notify('Deleted contact', 'success') hidePopup() renderAllContacts() })