Skip to content

Instantly share code, notes, and snippets.

@jmvanderpol
jmvanderpol / keybase.md
Last active September 22, 2019 16:14
Keybase proof of identity

I hereby claim:

  • I am jmvanderpol on github.
  • I am jmvanderpol (https://keybase.io/jmvanderpol) on keybase.
  • I have a public key ASCTYmv-iUCxzyUmbOGbd4G8wIqNMPzgTkqAnyynhu5yJQo

To claim this, I am signing this object:

{
@jmvanderpol
jmvanderpol / app.js
Created September 11, 2012 03:31 — forked from twilson63/app.js
AngularJS Contact Form Example
function ContactCtrl($scope, $http) {
$scope.success = false;
$scope.httpError = false;
$scope.send = function() {
var job = { job: { klass: 'msg', args: [$scope.msg]}};
$http.post('/contact',job).
success(function(data){
$scope.success = true;
$scope.msg = {};