fabric.js/lib/jsdoc-toolkit/app/test/name.js
2010-10-15 12:11:37 -04:00

19 lines
No EOL
266 B
JavaScript

/**
@name Response
@class
*/
Response.prototype = {
/**
@name Response#text
@function
@description
Gets the body of the response as plain text
@returns {String}
Response as text
*/
text: function() {
return this.nativeResponse.responseText;
}
}