Skip to content

Commit

Permalink
Merge pull request #1714 from BrockA/master
Browse files Browse the repository at this point in the history
__exposedProps__ was not set on GM_xmlhttpRequest's abort function
  • Loading branch information
arantius committed Feb 28, 2013
2 parents 7c7cc9f + 5d3861c commit 588dc99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/xmlhttprequester.js
Expand Up @@ -56,7 +56,8 @@ GM_xmlhttpRequester.prototype.contentStartRequest = function(details) {
responseHeaders: "r",
responseText: "r",
status: "r",
statusText: "r"
statusText: "r",
abort: "r"
},
abort: function () { return req.abort(); }
};
Expand Down

0 comments on commit 588dc99

Please sign in to comment.