move user image into profile settings

This commit is contained in:
Luke Pulverenti 2014-10-15 23:26:39 -04:00
parent c2ea67d056
commit 53cd8b0eb8
36 changed files with 376 additions and 372 deletions

View file

@ -1,4 +1,4 @@
(function ($, document, apiClient) {
(function ($, document) {
function revoke(page, key) {
@ -10,7 +10,7 @@
ApiClient.ajax({
type: "DELETE",
url: apiClient.getUrl('Auth/Keys/' + key)
url: ApiClient.getUrl('Auth/Keys/' + key)
}).done(function () {
@ -125,7 +125,7 @@
ApiClient.ajax({
type: "POST",
url: apiClient.getUrl('Auth/Keys/', {
url: ApiClient.getUrl('Auth/Keys/', {
App: $('#txtAppName', form).val()
@ -142,4 +142,4 @@
}
};
})(jQuery, document, ApiClient);
})(jQuery, document);