Commit 30da9a9e6b35fcfbc0d9eafadd12f33dffd1b22c

  • avatar
  • arvind
  • Thu Jun 27 18:04:18 IST 2013
Adding sweet-authenticate.js
  
1var sweet = {
2 authenticate: function(user, hash){
3 $.post("http://localhost:5001/authenticate",{"user":user, "hash":hash}, function(data){
4
5 return true;
6 });
7 }
8
9};