Mercurial > code > home > repos > homeauto
view service/shuttlepro/gui.js @ 1406:b2e9cd28d202
loftdesk config
Ignore-this: 2bee427b1909e6c60603f03d6ad69087
darcs-hash:83fc6c1754be4b34f14fbd6293b8d9cc40b6b40c
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Tue, 23 Jul 2019 10:29:20 -0700 |
parents | 9bb3eac740f0 |
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); })();