Commit 30da9a9e6b35fcfbc0d9eafadd12f33dffd1b22c
- Diff rendering mode:
- inline
- side by side
static/sweet-authenticate.js
(9 / 0)
  | |||
1 | var 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 | }; |