MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. pastormingle
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    P
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 10
    • Posts 96
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Display start time and end time on meetings

      @sdetweil OK not sure if this is part of it or not but if I make an appointment it doesn’t show up on the mm calendar but if I do it as an event it will. 1d8c85ae-8a81-485e-8494-35e49e54c775-image.png 6206483e-e484-4b41-819a-07632090359a-image.png

      posted in Troubleshooting
      P
      pastormingle
    • RE: Display start time and end time on meetings

      @sdetweil I did and for events now it’s all working great but start time and end time on meetings doesn’t have times on it… I don’t need times on all day events.
      5b31d628-6f3d-4df1-8acc-bbca6eca3a4d-image.png

      posted in Troubleshooting
      P
      pastormingle
    • Display start time and end time on meetings

      Re: How to display start and end times/dates of events in calendar I’ve not been able to get the start time and end time on meetings in the calendar. 5d849ce0-ae7e-4d64-b462-5e9ffc5a7c70-image.png 09d6e9d6-b22e-46e5-aa98-d7d9dc5c8d71-image.png

      posted in Troubleshooting
      P
      pastormingle
    • RE: Calendar Event Display start and end date

      @sdetweil Ok i think i got it now…
      if (this.config.showEnd) {
      timeWrapper.innerHTML += “-”;
      timeWrapper.innerHTML += this.capFirst(moment(event.endDate, “x”).format(this.config.dateEndFormat));
      } else
      // For full day events we use the fullDayEventDateFormat
      if (event.fullDayEvent) {

      posted in Troubleshooting
      P
      pastormingle
    • RE: Calendar Event Display start and end date

      @sdetweil if (this.config.timeFormat === “absolute”) {
      // Use dateFormat
      timeWrapper.innerHTML = this.capFirst(moment(event.startDate, “x”).format(this.config.dateFormat));
      // Add end time if showEnd
      if (this.config.showEnd) {
      timeWrapper.innerHTML += “-”;
      timeWrapper.innerHTML += this.capFirst(moment(event.endDate, “x”).format(this.config.dateEndFormat));
      }
      // For full day events we use the fullDayEventDateFormat
      if (event.fullDayEvent) {
      //subtract one second so that fullDayEvents end at 23:59:59, and not at 0:00:00 one the next day
      event.endDate -= oneSecond;
      timeWrapper.innerHTML = this.capFirst(moment(event.startDate, “x”).format(this.config.fullDayEventDateFormat));
      }

      posted in Troubleshooting
      P
      pastormingle
    • RE: Calendar Event Display start and end date

      @sdetweil Don’t think i am doing this right as it’s not loading the calendar.js file now… Do I just copy this to the bottom of the file the same it?

      posted in Troubleshooting
      P
      pastormingle
    • Calendar Event Display start and end date

      Re: How to display start and end times/dates of events in calendarI’ve not been able to set all-day events to display start and end dates. Any guidance here?

      posted in Troubleshooting
      P
      pastormingle
    • RE: Google Task module

      @sdetweil that was it thanks so much…

      posted in Custom CSS
      P
      pastormingle
    • RE: Google Task module

      I looked through the log and don’t see anything that would be an issue…
      “loader.js:184 Load script: modules/MMM-GoogleTasks/MMM-GoogleTasks.js
      :8080/modules/MMM-GoogleTasks/MMM-GoogleTasks.js:7 Uncaught SyntaxError: Unexpected identifier
      loader.js:184 Load script: modules/default/updatenotification/updatenotification.js”

      posted in Custom CSS
      P
      pastormingle
    • RE: Google Task module

      that worked perfectly and i was able to set the header etc all looks great now… But this morning when I started my Google task nothing is showing now… Do you have any tips on trouble shooting modules that use an API ?

      posted in Custom CSS
      P
      pastormingle
    • 1
    • 2
    • 6
    • 7
    • 8
    • 9
    • 10
    • 8 / 10