Merge pull request #3982 from cyounkins/master

Updating Titanium Definitions to 3.5.0
This commit is contained in:
Masahiro Wakame
2015-04-03 00:38:29 +09:00
2 changed files with 1749 additions and 988 deletions
+4 -4
View File
@@ -26,7 +26,7 @@ function test_window() {
}
function test_tableview() {
var data = [];
var data : Ti.UI.View[] = [];
for (var i = 0; i < 10; i++) {
var row = Ti.UI.createTableViewRow();
var label = Ti.UI.createLabel({
@@ -73,12 +73,12 @@ function test_network() {
var url = "http://www.appcelerator.com";
var client = Ti.Network.createHTTPClient({
// function called when the response data is available
onload : function(e) {
onload : function(e: SuccessResponse) {
alert(this.responseText);
},
// function called when an error occurs, including a timeout
onerror : function(e) {
alert(e.rror);
onerror : function(e: FailureResponse) {
alert(e.error);
},
timeout : 5000 // in milliseconds
});
+1745 -984
View File
File diff suppressed because it is too large Load Diff