sbin/res/jsdoc/app/test/name.js
author hamidouk
Fri, 13 Jan 2012 16:20:21 +0100
branchpopcorn-port
changeset 632 720ffcc65e36
parent 520 fe008e95a716
permissions -rw-r--r--
added automatic streamer detection.

/**
 @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;
	}
}