Mercurial > code > home > repos > homeauto
view service/shuttlepro/gui.js @ 387:486d5d6c34e0
mockup images
Ignore-this: 9ecf339889235e9f763c276d0073e172
author | drewp@bigasterisk.com |
---|---|
date | Wed, 02 Jan 2019 18:39:35 -0800 |
parents | 57ae7dc0f417 |
children |
line wrap: on
line source
(function () { function abbreviateTrig(trig) { // prefixes, abbreviations, make everything into links, etc return trig; } var model = { current: ko.observable("...") }; model.refreshGraph = function() { $.ajax({ url: "graph", success: function(data) { model.current(abbreviateTrig(data)); } }); }; model.refreshGraph(); ko.applyBindings(model); })();