view service/laundry/gui.js @ 93:c314196f6164

laundry status display Ignore-this: 2152a4e585894a68a40042849d7200be
author drewp@bigasterisk.com
date Sat, 24 Aug 2013 22:11:55 -0700
parents
children
line wrap: on
line source

'use strict';

function Ctrl($scope, $http) {
    $http.get("status").success(function (data) {
        $scope.status = data;
    });
}