Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. [{"id":"697bf5cc.93b6d4","type":"tab","label":"Flow 6"},{"id":"3f8c5610.e25c5a","type":"inject","z":"697bf5cc.93b6d4","name":"","topic":"","payload":"","payloadType":"date","repeat":"1","crontab":"","once":true,"x":177,"y":169,"wires":[["e32f2c86.5eaa5"]]},{"id":"e32f2c86.5eaa5","type":"function","z":"697bf5cc.93b6d4","name":"set","func":"var random= Math.round(Math.random() * 10);\nmsg.payload = {random};\nreturn msg;","outputs":1,"noerr":0,"x":375,"y":157,"wires":[["6d395a81.b3274c","bf040e91.d1b14"]]},{"id":"6d395a81.b3274c","type":"ui_template","z":"697bf5cc.93b6d4","group":"ee087759.3ec6a8","name":"Prueba","order":0,"width":0,"height":0,"format":"<script src=\"https://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js\"></script>\n <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js\"></script>\n <script src=\"https://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js\"></script>\n\n<h1 id=\"h1\" align=\"center\">Numero Random aqui </h1>\n\n<script>\n\n(function(scope) {\n var timer = setInterval(function() { //check that the Morris libs are loaded, if not wait\n \n clearInterval(timer);\n \n var myData;\n \n \n \n scope.$watch('msg', function (msg) { //watch for an incoming NR msg\n if (msg) {\n \n myData = msg;\n console.log(myData.payload.random);\n $(\"#h1\").text(myData.payload.random);\n \n };\n }); //close out the watch \n }, 100); // close out the setInterval \n})(scope);\n\n\n</script>","storeOutMessages":true,"fwdInMessages":true,"templateScope":"local","x":573,"y":132,"wires":[[]]},{"id":"bf040e91.d1b14","type":"debug","z":"697bf5cc.93b6d4","name":"","active":true,"console":"false","complete":"false","x":553,"y":228,"wires":[]},{"id":"ee087759.3ec6a8","type":"ui_group","z":"","name":"Default","tab":"32897c6c.82a5a4","disp":true,"width":"6"},{"id":"32897c6c.82a5a4","type":"ui_tab","z":"","name":"Home","icon":"dashboard"}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement