Problem with the mwl-calendar in the title of events

0

Hello, I need help Does anyone know how to eliminate that time frame when creating a title in the mwl-calendar? I've already tried with the event {   tittle: "some other title" }

but the result always returns the text that gives it that hour in parentheses.

    
asked by Mario Fabricio López Pérez 16.06.2017 в 05:29
source

1 answer

0

According to the manual vm.events shows that section where startsAt and endsAt are the variables you need to change

 vm.events= [
      {
        title: 'An event',
        color: calendarConfig.colorTypes.warning,
        startsAt: TuFechaAqui,
        endsAt: TuFechaAqui,
        draggable: true,
        resizable: true,
        actions: actions
      }]
    
answered by 16.06.2017 в 23:25