sbin/res/jsdoc/app/test/name.js
author veltr
Thu, 30 Aug 2012 13:06:35 +0200
branchnew-model
changeset 942 30f650574bca
parent 520 fe008e95a716
permissions -rw-r--r--
Added a script to copy compiled files to LDT Platform

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