@wotohr Can you please give me some solution, I actually require the stock module. If anyone can give me google finance url for json data, then I shall be very much thankful
Read the statement by Michael Teeuw here.
Posts made by yours.mukul
-
RE: Stock Module Problem
-
RE: Except a module in getModules()
@strawberry-3.141 Well your code didn’t hide any of modules
-
RE: Except a module in getModules()
@strawberry-3.141 how to iterate over the modules array ?
I want to show/hide all modules except the “helloworld”. -
RE: Stock Module Problem
@wotohr The modules uses
http://finance.google.com/finance/info?client=ig&q=
to get the json data of stock, where as google has changed the url and now the data is not able to be fetched. That’s the main reason, if you can find any other way to get the stock data in json format then we can run it again -
RE: Except a module in getModules()
socketNotificationReceived: function(notification, payload) { var i,modules = MM.getModules(); if (notification === "BUTTON_PRESSED"){ this.sendNotification(notification, payload); for(i=0; imodules.length; i+=1){ if(modules[i].hidden == true){ modules[i].show(0); } else if(modules[i].hidden == false) { modules[i].hide(0); } } }
I want to show/hide all the modules except the **hello world ** module. Please help me out with that.
Note: I was unable to write less than sign in the for loop while writing this reply, I think its a bug, in this forum, whenever I write less than, all the text after it is is ignored.
-
RE: Except a module in getModules()
I have a button module, which throws notification when a button is pressed. What I want is, it blacks out the whole screen except “Hello World”. So I will be using
**var i,modules = MM.getModule();
for(i=0;i -
Except a module in getModules()
var i,modules = MM.getModules().exceptModule(helloworld);
The above code throws error, while the below doesn’t work
var i,modules = MM.getModules().exceptModule(‘helloworld’); -
RE: Push Notification
@j.e.f.f Thanx for the reply. Well I need to show up my phone’s notification on my magic mirror. Just like the above modules do. I feel its cool to have a phone notification connected to my mirror, so I do not need to look up my phone.
Is there any other way to achieve it ? -
Push Notification
I installed Push Notification Modules, but it never shows up any notification. I tried posting issue on github, but the author didn’t respond.