

TTS as low as
possible
h1 {
font-family: fallbackfont, serif;
}
.awesomefont-loaded h1 {
font-family: awesomefont, serif;
}


What is the job, people hire your product for.

"People don't want to buy a quarter inch drill. They want a quater inch hole." - Theordore Levitt




hoodie = new Hoodie(); hoodie.account.signUp(username, password);
hoodie = new Hoodie(); hoodie.account.signIn('joe@example.com', 'secret');
hoodie.store.add('task', {name: 'Learn hoodie', status: 'done'}).done(function (newObject) {}); hoodie.store.find(type, id).done(function (object) {});


describe('toggleButton', function() { var button, ButtonGenerator; .... .... it('should have a click handler', function() { expect(button.$element).toHandle('click'); }); it('should call the API on click and call the create action', function() { spyOn($, 'ajax'); button.$element.trigger('click'); expect($.ajax).toHaveBeenCalled(); expect($.ajax.mostRecentCall.args[0].url).toEqual('/object/42/action...'); }); });

