Skip to content

Instantly share code, notes, and snippets.

@kauffmanes
Last active June 18, 2017 14:36
Show Gist options
  • Save kauffmanes/2dd14745e3c0d0bdc74e6c8ee8a29894 to your computer and use it in GitHub Desktop.
Save kauffmanes/2dd14745e3c0d0bdc74e6c8ee8a29894 to your computer and use it in GitHub Desktop.
v2 app.js
angular.module('app', [])
.controller('MainController', ['$scope', function ($scope) {
$scope.formData = {};
//Parses and saves to localStorage
$scope.save = function () {};
//Once connection is detected, submit to server
$scope.sync = function () {};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment