Changes in tags are saved to the data store.
Also, when a task is created, its arbit tags are stored. Issue 696 fixed.
/**
@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;
}
}