view service/laundry/static/gui.js @ 94:9ea3ea4f382f

laundry add .go files Ignore-this: 34b9f9b1ab2830da75757ffedb93ead7
author drewp@bigasterisk.com
date Sat, 24 Aug 2013 22:54:34 -0700
parents service/laundry/gui.js@c314196f6164
children 5907eeb9a630
line wrap: on
line source

'use strict';

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