X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cb87f02642d0097ebc067ca1f9371dde274a41e3..c8e21c409c9bec446f0caa2526d5b07861bb3299:/app/assets/javascripts/oauth.js diff --git a/app/assets/javascripts/oauth.js b/app/assets/javascripts/oauth.js index 037e1d730..d688590b0 100644 --- a/app/assets/javascripts/oauth.js +++ b/app/assets/javascripts/oauth.js @@ -1,10 +1,10 @@ -//= require ohauth +//= require ohauth/ohauth $(document).ready(function () { var application_data = $("head").data(); function makeAbsolute(url) { - var a = document.createElement('a'); + var a = document.createElement("a"); a.href = url; return a.href; } @@ -17,7 +17,7 @@ $(document).ready(function () { token_secret: application_data.tokenSecret }); - $.ajaxPrefilter(function(options, jqxhr) { + $.ajaxPrefilter(function (options, jqxhr) { if (options.oauth) { options.headers = options.headers || {}; options.headers.Authorization = headerGenerator(options.type, makeAbsolute(options.url), jqxhr.data);