Skip to content

Instantly share code, notes, and snippets.

@atkolkma
Created September 3, 2014 20:31
Show Gist options
  • Save atkolkma/66a382bb25ecdd512f0a to your computer and use it in GitHub Desktop.
Save atkolkma/66a382bb25ecdd512f0a to your computer and use it in GitHub Desktop.
Is this not shit?
angular.module('myApp',['emailParser'])
.controller('MyController',
['$scope', 'EmailParser',
function($scope, EmailParser) {
// Set up a watch
$scope.$watch('emailBody', function(body) {
if (body) {
$scope.previewText =
EmailParser.parse(body, {
to: $scope.to
});
}
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment