Added API key authentication

This commit is contained in:
Mark McDowall 2013-09-20 00:31:02 -07:00
parent 689f27bee6
commit 57fdbe6e08
11 changed files with 114 additions and 15 deletions

View file

@ -1,28 +0,0 @@
//try to add ajax data as query string to DELETE calls.
'use strict';
define(function () {
return function () {
var original = this.ajax;
this.ajax = function () {
var xhr = arguments[0];
//check if ajax call was made with data option
if (xhr && xhr.data && xhr.type === 'DELETE') {
if (!xhr.url.contains('?')) {
xhr.url = xhr.url + '?' + $.param(xhr.data);
}
else {
xhr.url = xhr.url + '&' + $.param(xhr.data);
}
delete xhr.data;
}
return original.apply(this, arguments);
};
};
});