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

    Posts

    Recent Best Controversial
    • installing MM2 dependency issues...

      is there anyway these can be added to the installation to install the latest versions?

      npm WARN grunt-stylelint@0.10.1 requires a peer of stylelint@^9.0.0 but none is installed. You must install peer dependencies yourself.
      npm WARN acorn-jsx@5.0.1 requires a peer of acorn@^6.0.0 but none is installed. You must install peer dependencies yourself.
      lodash@4.17.5 is also shown as a vulnerability with every install and update.
      Just curious as having the current versions of all the dependencies upon install may alleviate some of the issues some users have with updates and initial installs.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: BBC News feed

      there is an omission in the newsfeed.js file, that is causing this problem…

      this secton:

      if(!this.config.showFullArticle){
              var title = document.createElement("div");
      	title.className = "bright medium light" + (!this.config.wrapTitle ? " no-wrap" : "");
      	title.innerHTML = this.newsItems[this.activeItem].title;
      	wrapper.appendChild(title);
      }
      

      states if(!this.config.showFullArticle){

      But there isn’t a showFullArticle: false; in 'defaults

      So, basically it is ignoring the showSourceTitle: true, because this section cannot be executed

      I think it would make more sense to have the above code snippet be worded like this:

      if(this.config.showSourceTitle){
              var title = document.createElement("div");
      	title.className = "bright medium light" + (!this.config.wrapTitle ? " no-wrap" : "");
      	title.innerHTML = this.newsItems[this.activeItem].title;
      	wrapper.appendChild(title);
      }
      

      then maybe add:

      showSourceTitle = false;
      

      to this section of code:

      if (this.config.showFullArticle) {
      	var fullArticle = document.createElement("iframe");
      	fullArticle.className = "";
      	fullArticle.style.width = "100vw";
      	// very large height value to allow scrolling
      	fullArticle.height = "3000";
      	fullArticle.style.height = "3000";
      	fullArticle.style.top = "0";
      	fullArticle.style.left = "0";
      	fullArticle.style.border = "none";
      	fullArticle.src = this.getActiveItemURL()
      	fullArticle.style.zIndex = 1;
      	wrapper.appendChild(fullArticle);
      }
      

      if you don’t want the title to display while the article is being displayed.

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: Multiple instances of MMM-DarkSkyForecast with MMM-pages

      @popeofmope

      you have both modules (calendar & DarkSkyForecast) on both pages…

      try it like this:

      {
          module: 'MMM-pages',
          config: {
              modules: [ 
                  ["calendar"],
                  ["MMM-DarkSkyForecast"]
              ],
              fixed: ["clock", "MMM-page-indicator"]
          }
      },
      

      hope this helps

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-EARTH

      @Mykle1 very cool Mykle1!!!

      posted in Education
      justjim1220J
      justjim1220
    • RE: MMM-Simple-Logo

      @ines as in, to display multiple images at the same time?

      posted in Requests
      justjim1220J
      justjim1220
    • RE: Module Request for the Weather Experts! 😉

      my results changing from height/width of 100% each to 100vh and 100vw

      0_1554063118063_Screenshot (37).png

      posted in Requests
      justjim1220J
      justjim1220
    • RE: Complete Walkthrough - Install MagicMirror on a PC - Windows 7/10

      @jelbear

      Not that I can think of

      I’m not using a RasPi either.
      If I had one, I would try it to se if any difference.

      Sorry.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • Module Request for the Weather Experts! 😉

      I have been trying to put a webpage on my MM using iFrame modules…
      I have tried: MMM-iFrame-Ping, MMM-iFrame, MMM-SmartWebDisplay, MMM-Widget, and iFrame.

      The page I want to be able to display in a fullscreen page of MM is:
      https://maps.darksky.net/@temperature,40.262,-94.035,9900000?3d

      I also would like to be able to copy the page exactly with all buttons and menus intact and working.

      Could anyone please take a look and let me know if it is possible???

      Thanks In Advance!

      EDIT>>>
      I was able to get part of the page using MMM-iFrame-Ping as shown below:
      0_1554006252468_Screenshot (35).png

      EDIT#2>>>
      I now can get the page to show using iFrame, but not as fullscreen… HELP!
      0_1554012276115_Screenshot (36).png

      posted in Requests
      justjim1220J
      justjim1220
    • RE: Complete Walkthrough - Install MagicMirror on a PC - Windows 7/10

      @jelbear

      Just to be sure… You do have a folder named exampleImages within you MMM-BackgroundSlideshow directory???

      I just installed and ran this module on my Windows device and it works just fine.

      Looking at the error you posted above, it looks as if your exampeImages folder is missing.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: any ideas what causes this... ?

      this issue has started back up again for reasons unknown

      Any Ideas?

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • 1 / 1