Read the statement by Michael Teeuw here.
MMM-Gas
-
@mochman It wasn’t loading the config.js. So I just stepped through line by line until if failed. Once if failed I put the 10 in quotations and it loaded.
-
Ok, so I deleted my current GAS module. and reinstalled it.
I went to the website to check my zip code, which is good.
I tried it with & without the quotes around the 10.
Still not working for me… :slightly_frowning_face:
-
NVM!!!
When in doubt, Reboot it out!!!
:smiling_face_with_sunglasses:
-
Is there any way to remove the Distance column? I live in a small town and dont really need the distances on the display. I hunted around the files a little bit and didnt see anything that I could maybe edit or delete that would remove it.
Rob
-
@rob73 I haven’t tried this to see how it looks, but you may just be able to comment out a few of the lines in
MMM-Gas.js
Try commenting out the last 2 lines of this code in the getDom() function.var td5 = document.createElement("td"); td5.innerHTML = dist; TDrow.appendChild(td5); weatherTable.appendChild(TDrow);
It should look like this when you’re done.
var td5 = document.createElement("td"); td5.innerHTML = dist; //TDrow.appendChild(td5); //weatherTable.appendChild(TDrow);
You should also comment out this part as well.
var bjumpy = document.createElement("th"); bjumpy.setAttribute("style", "text-align:center"); bjumpy.classList.add("xsmall"); bjumpy.innerHTML = "Distance"; //xFCRow.appendChild(bjumpy); //weatherTable.appendChild(xFCRow);
-
@mochman … Awesome… I followed your instructions and it worked! Thank you! I would have never figured that out on my own…
Thanks again!
Rob
-
New config option to hide or show distance column.
example config:
{ disabled: false, module: "MMM-Gas", position: "top_left", config: { zip: "14904", items: 10, typeGas: "", //premium, mid-grade, diesel, or blank for regular sortBy: "price", //distance, price distance: false //default is true, so using true just don't use distance in your config } },
DO a git pull in the MagicMirror/modules/MMM-Gas dir to update!
AND a HUGE Thanks to @mochman for all the help!!!
-
Thanks. I really like this module alot. Very nice options and I love the mouse overs. Fantastic work! :thumbsup:
-
Awesome!
-
Is this still working?? It was working flawlessly for me before but i turned the MM off for like 3 months when i was doing some work around the house and when i turned it back on i do not see anything on my list of gas stations.
It just says updated at this time and date but nothing listed.
I did a git pull thinking that something might have been updated in those 3 months but nothing changed.Anyone else experiencing difficulties ???
D