- Aggiunto Step: i 7 Requisiti degli invitati.

- Aggiornata la Lavagna (anche sul BOT).
 - Zoom solo 3 visibili.
This commit is contained in:
Paolo Arena
2020-02-12 20:41:57 +01:00
parent ba21d228b3
commit ffb660e157
32 changed files with 766 additions and 418 deletions

View File

@@ -703,8 +703,8 @@ namespace Actions {
}
const usertosend = {
username: authData.username,
password: authData.password,
username: authData.username.trim(),
password: authData.password.trim(),
lang: state.lang,
subs: sub,
options

View File

@@ -1542,7 +1542,7 @@ export const tools = {
},
showNegativeNotif(q: any, msg) {
tools.showNotif(q, msg, { color: 'negative', icon: 'notifications' }, 8000)
tools.showNotif(q, msg, { color: 'negative', icon: 'notifications' }, 10000)
},
showNeutralNotif(q: any, msg) {
@@ -3164,6 +3164,10 @@ export const tools = {
return 'fa-flag-ro'
else if (lang === 'CL')
return 'fa-flag-cl'
else if (lang === 'PL')
return 'fa-flag-pl'
else if (lang === 'EG')
return 'fa-flag-eg'
return ''
} catch (e) {
@@ -3235,6 +3239,10 @@ export const tools = {
return 'Romania'
} else if (nat === 'CL') {
return 'Chile'
} else if (nat === 'PL') {
return 'Poland'
} else if (nat === 'EG') {
return 'Egypt'
}
},