{ "id": "120843", "key": "TIMOB-15400", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "15699", "description": "2013 Sprint 21", "name": "2013 Sprint 21", "archived": true, "released": true, "releaseDate": "2013-10-18" }, { "id": "15702", "description": "2013 Sprint 21 Tooling", "name": "2013 Sprint 21 Tooling", "archived": true, "released": true, "releaseDate": "2013-10-18" }, { "id": "14982", "description": "Release 3.2.0", "name": "Release 3.2.0", "archived": false, "released": true, "releaseDate": "2013-12-19" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2013-10-07T17:35:53.000+0000", "created": "2013-10-06T04:22:12.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "module_animation", "qe-closed-3.2.0", "qe-manualtest" ], "versions": [ { "id": "14162", "description": "Release 3.1.0", "name": "Release 3.1.0", "archived": true, "released": true, "releaseDate": "2013-04-16" } ], "issuelinks": [ { "id": "32459", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "121069", "key": "TIMOB-15452", "fields": { "summary": "Mobile Web: Cannot read property '_layout' of undefined from animationPlay function", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "High", "id": "2" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "32458", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "121070", "key": "TIMOB-15453", "fields": { "summary": "MobileWeb: Cannot read property 'properties' of undefined ", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "High", "id": "2" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "32317", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "120467", "key": "TIMOB-15346", "fields": { "summary": "Mobile Web: Investigate customer performance issues", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Critical", "id": "1" }, "issuetype": { "id": "7", "description": "gh.issue.story.desc", "name": "Story", "subtask": false } } } } ], "assignee": { "name": "bhughes", "key": "bhughes", "displayName": "Bryan Hughes", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2014-08-07T20:56:06.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "11500", "name": "MobileWeb", "description": "Mobile Web (HTML) Platform" } ], "description": "The animation system crashes when there are two animations in play for one element and the first animation stops before the second one starts because the second one had a delay set.\r\n\r\n{code}\r\n/*global Ti*/\r\n\r\nvar win = Ti.UI.createWindow({\r\n\t\tbackgroundColor: '#fff'\r\n\t}),\r\n\tview = Ti.UI.createView({\r\n\t\tbackgroundColor: '#f00',\r\n\t\twidth: 100,\r\n\t\theight: 100,\r\n\t\tleft: 200,\r\n\t\ttop: 200\r\n\t});\r\n\r\nwin.add(view);\r\nwin.open();\r\n\r\nrequire.on.once(view, 'postlayout', function () {\r\n\tsetTimeout(function () {\r\n\t\tview.animate({\r\n\t\t\tleft: 300,\r\n\t\t\twidth: 100,\r\n\t\t\theight: 100,\r\n\t\t\tduration: 500\r\n\t\t});\r\n\r\n\t\tsetTimeout(function () {\r\n\t\t\tview.animate({\r\n\t\t\t\ttop: 300,\r\n\t\t\t\twidth: 100,\r\n\t\t\t\theight: 100,\r\n\t\t\t\tduration: 500,\r\n\t\t\t\tdelay: 200\r\n\t\t\t});\r\n\t\t}, 400);\r\n\t}, 0);\r\n});\r\n{code}", "attachment": [], "flagged": false, "summary": "Mobile Web: Animation system crashes with staggered animations", "creator": { "name": "bhughes", "key": "bhughes", "displayName": "Bryan Hughes", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "bhughes", "key": "bhughes", "displayName": "Bryan Hughes", "active": true, "timeZone": "America/Los_Angeles" }, "environment": null, "comment": { "comments": [ { "id": "273944", "author": { "name": "bhughes", "key": "bhughes", "displayName": "Bryan Hughes", "active": true, "timeZone": "America/Los_Angeles" }, "body": "PR: https://github.com/appcelerator/titanium_mobile/pull/4761", "updateAuthor": { "name": "bhughes", "key": "bhughes", "displayName": "Bryan Hughes", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-10-06T04:38:17.000+0000", "updated": "2013-10-06T04:38:17.000+0000" }, { "id": "276743", "author": { "name": "pmishra", "key": "pmishra", "displayName": "Paras Mishra", "active": true, "timeZone": "Asia/Kolkata" }, "body": "Above test code works fine with no crash.\r\n\r\nVerified fix on:\r\nSDK: 3.2.0.v20131024120843\r\nCLI version : 3.2.0\r\nOS : MAC OSX 10.8.4\r\nAlloy : 1.2.2\r\nAppcelerator Studio, build: 3.2.0.201310181700\r\nXCode : 5", "updateAuthor": { "name": "pmishra", "key": "pmishra", "displayName": "Paras Mishra", "active": true, "timeZone": "Asia/Kolkata" }, "created": "2013-10-25T06:51:39.000+0000", "updated": "2013-10-25T06:51:39.000+0000" } ], "maxResults": 2, "total": 2, "startAt": 0 } } }