• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Microsoft To-Do (wunderlist replacement?)

Scheduled Pinned Locked Moved Unsolved Requests
45 Posts 17 Posters 19.8k Views 19 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • O Offline
    open_book
    last edited by Sep 15, 2020, 11:00 AM

    @thobach thanks for your effort. Just got this up and running from your instructions in the README. Very pleased. :thumbs_up:

    sudo insert motivational.quote

    1 Reply Last reply Reply Quote 0
    • M Offline
      Mighty Mouseq @thobach
      last edited by Mighty Mouseq Oct 20, 2020, 7:28 PM Oct 20, 2020, 7:27 PM

      @thobach said in Microsoft To-Do (wunderlist replacement?):

      I don’t plan to implement a fade-option, sorry, it would require quite some effort given the current implementation.

      I have been able to add a fade-option by looking at how this option has been implemented in the MMM-nstreinen module by @qistoph. Since I am not familiair with JS coding I don’t know wether it has been coded as it should.

      My addition takes two parameters from config.js: ‘fade’, which can be true or false and ‘fadePoint’, which takes a decimal value between 0 and 1 and marks the point where the fade starts.

      I added the code after the listItem styling.

      // needed for the fade effect
              itemCounter += 1
              
              // Create fade effect.
              if (self.config.fade && self.config.fadePoint < 1) {
                if (self.config.fadePoint < 0) {
      	          self.config.fadePoint = 0;
      	        }
      	        var startingPoint = self.config.itemLimit * self.config.fadePoint;
      	        var steps = self.config.itemLimit - startingPoint;
      	        if (itemCounter >= startingPoint) {
                  var currentStep = itemCounter - startingPoint;
                  listItem.style.opacity = 1 - (1 / steps * currentStep);
                }    
              }
      
      T 1 Reply Last reply Oct 25, 2020, 9:41 AM Reply Quote 0
      • T Offline
        thobach @Mighty Mouseq
        last edited by Oct 25, 2020, 9:41 AM

        @Mighty-Mouseq Nice! Do you want to create a pull request? I could then merge it into the main branch for everyone.

        M 2 Replies Last reply Oct 26, 2020, 9:11 AM Reply Quote 0
        • M Offline
          Mighty Mouseq @thobach
          last edited by Oct 26, 2020, 9:11 AM

          @thobach I do not consider myself a developer :-). I do not even have a GitHub account. If you prefer to implement this change through a pull request then I will have a look at the process. For such a minor change it might be a lot easier if you, or another developer, added the code in your repository.

          1 Reply Last reply Reply Quote 0
          • M Offline
            Mighty Mouseq @thobach
            last edited by Nov 8, 2020, 1:29 PM

            @thobach I think I have created a pull request for the fade effect.

            1 Reply Last reply Reply Quote 0
            • 1
            • 2
            • 3
            • 4
            • 5
            • 5 / 5
            • First post
              Last post
            Enjoying MagicMirror? Please consider a donation!
            MagicMirror created by Michael Teeuw.
            Forum managed by Sam, technical setup by Karsten.
            This forum is using NodeBB as its core | Contributors
            Contact | Privacy Policy