mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
time
This commit is contained in:
@@ -194,8 +194,8 @@ export class NewEventPage implements OnInit {
|
||||
this.modalController.dismiss();
|
||||
}
|
||||
|
||||
roundTimeQuarterHour(timeToReturn?) {
|
||||
let date: any = new Date(timeToReturn) || Date();
|
||||
roundTimeQuarterHour(timeToReturn = new Date()) {
|
||||
let date: any = new Date(timeToReturn) || new Date();
|
||||
const minutes = date.getMinutes();
|
||||
date.setSeconds(0);
|
||||
|
||||
@@ -526,7 +526,7 @@ export class NewEventPage implements OnInit {
|
||||
this.postEvent.Attendees = data;
|
||||
}
|
||||
|
||||
setIntervenientCC(data){
|
||||
setIntervenientCC(data) {
|
||||
this.taskParticipantsCc = [];
|
||||
this.taskParticipantsCc = data;
|
||||
}
|
||||
@@ -561,7 +561,7 @@ export class NewEventPage implements OnInit {
|
||||
});
|
||||
}
|
||||
|
||||
removeAttachment(index: number){
|
||||
removeAttachment(index: number) {
|
||||
|
||||
this.documents = this.documents.filter( (e, i) => index != i);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user