Mercurial > code > home > repos > homeauto
view service/shuttlepro/gui.js @ 1463:2452dd87aa9c
release 0.9.0
Ignore-this: cd9ac6c22e35bce9d647edd85ab75acd
darcs-hash:ee94646423f37369ac319ecce7a49cb108ecada4
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Sun, 24 Nov 2019 00:02:42 -0800 |
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); })();