Created
August 12, 2014 22:54
-
-
Save elbuo8/74f2445b149550c4fc29 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body ng-controller="TestCtrl"> | |
<script src="bower_components/angular/angular.min.js"></script> | |
<script src="src/sendgrid.js"></script> | |
<script> | |
var app = angular.module('app', ['sendgrid']); | |
app.config(['sendgrid', function(sendgridProvider) { | |
console.log('here'); | |
}]); | |
app.controller('TestCtrl', ['$scope', 'sendgrid', function($scope, sendgrid) { | |
cconsole.log($scope); | |
console.log(new sendgrid.Email()); | |
}]); | |
</script> | |
</body> | |
</html> |
cesarandreu
commented
Aug 12, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment