init commit

This commit is contained in:
Tommy Parnell
2015-03-19 00:01:29 -04:00
parent 89a4be8f6b
commit 7e2bad34b4
88 changed files with 50091 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
(function ($) {
$.fn.untappd = function (username) {
this.each(function () {
var that = this;
$.post("http://localhost:12116/" + username)
.success(function (data) {
$(that).html(data);
});
});
};
})(jQuery);