Skip to content

Instantly share code, notes, and snippets.

View cat-haines's full-sized avatar

Cat Haines cat-haines

View GitHub Profile
@cat-haines
cat-haines / app.js
Last active January 4, 2016 19:42
Pebble.js Tutorial Part 1 - 1
var UI = require('ui');
// Create a Card with title and subtitle
var card = new UI.Card({
title:'Weather',
subtitle:'Fetching...'
});
// Display the Card
card.show();