{ "id": "107007", "key": "AC-2328", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "12217", "key": "AC", "name": "Appcelerator - INBOX", "projectCategory": { "id": "10000", "description": "", "name": "Customer Service" } }, "resolution": { "id": "8", "description": "", "name": "Needs more info" }, "resolutiondate": "2013-04-05T19:55:52.000+0000", "created": "2012-12-21T18:20:26.000+0000", "labels": [], "versions": [], "issuelinks": [], "assignee": { "name": "shossain", "key": "shossain", "displayName": "Shak Hossain", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2016-03-08T07:41:20.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": "14544", "name": "Alloy", "description": "Please enter tickets related to the Alloy here." }, { "id": "14548", "name": "Titanium SDK & CLI", "description": "Please enter tickets related to the MobileSDK here." } ], "description": "function loadCheckin(category){\r\n$.checkin = Alloy.createController('checkin');\r\nmainWindow.add($.checkin.container);\r\n$.checkin.container.left = 639;\r\n$.mainContainer.animate({left:0, duration:0},function(){$.checkin.container.animate({left:0, duration:200});});\r\n$.checkin.loadPage(category);\r\n}", "attachment": [], "flagged": false, "summary": "Animating from 640 would never show the animated view, but works with 639", "creator": { "name": "opolyo01", "key": "opolyo01", "displayName": "Oleg Polyakov", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "opolyo01", "key": "opolyo01", "displayName": "Oleg Polyakov", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "Alloy 0.3.3, SDK 2.1.4, CLI 3.0.21", "comment": { "comments": [ { "id": "237559", "author": { "name": "tlukasavage", "key": "tlukasavage", "displayName": "Tony Lukasavage", "active": true, "timeZone": "America/Los_Angeles" }, "body": "This likely is not an Alloy-specific issue, assigning to Ingo so platform can assess.", "updateAuthor": { "name": "tlukasavage", "key": "tlukasavage", "displayName": "Tony Lukasavage", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-02-07T00:25:11.000+0000", "updated": "2013-02-07T00:25:11.000+0000" }, { "id": "246032", "author": { "name": "dcassenti", "key": "dcassenti", "displayName": "Davide Cassenti", "active": true, "timeZone": "Europe/Berlin" }, "body": "Hello,\r\n\r\nI tried to create a similar scenario, but I cannot reproduce the problem. I think you should share the code of your controller, in order to understand what exactly is going on.\r\n\r\nAlso, why are you running a 0ms animation on the mainContainer? What exactly is mainContainer?\r\n\r\nThanks", "updateAuthor": { "name": "dcassenti", "key": "dcassenti", "displayName": "Davide Cassenti", "active": true, "timeZone": "Europe/Berlin" }, "created": "2013-04-05T19:55:52.000+0000", "updated": "2013-04-05T19:55:52.000+0000" }, { "id": "283014", "author": { "name": "shossain", "key": "shossain", "displayName": "Shak Hossain", "active": false, "timeZone": "America/Los_Angeles" }, "body": "We have not heard back from you since you posted the issue. Not sure if this is still throwing error in your app. If so, please send us a complete test case so that we can take next necessary step to fix. Your sample is missing some components. If you can upload those, we will re-test and provide you our feedback.", "updateAuthor": { "name": "shossain", "key": "shossain", "displayName": "Shak Hossain", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-12-07T02:22:18.000+0000", "updated": "2013-12-07T02:22:18.000+0000" }, { "id": "286244", "author": { "name": "mrahman", "key": "mrahman", "displayName": "Mostafizur Rahman", "active": true, "timeZone": "Asia/Dhaka" }, "body": "We are unable to reproduce the reported error with the latest TISDK. Here is the code sample we used to test.\r\n\r\n\r\nh5. Test Environment:\r\n\r\nMAC OS X 10.8.5\r\nTi SDK 3.2.0.GA\r\nIOS Simulator 7.0.3 \r\nTi CLI 3.2.0 \r\nAlloy 1.3.0\r\nAndroid 2.3.3, 4.2.2\r\n\r\nh5. Test Code\r\n\r\nindex.js\r\n{code}\r\n\tfunction doClick(e)\r\n\t{\r\n\t\tif (e.source.toggle == true) {\r\n\t\t\t$.view.animate({\r\n\t\t\t\tleft : 0,\r\n\t\t\t\tduration : 400,\r\n\t\t\t\tcurve : Ti.UI.ANIMATION_CURVE_EASE_IN_OUT\r\n\t\t\t});\r\n\t\t\te.source.toggle = false;\r\n \r\n\t\t} else {\r\n\t\t\t$.view.animate({\r\n\t\t\t\tleft : 640,\r\n\t\t\t\tduration : 400,\r\n\t\t\t\tcurve : Ti.UI.ANIMATION_CURVE_EASE_IN_OUT\r\n\t\t\t});\r\n\t\t\te.source.toggle = true;\r\n \r\n\t\t}\r\n\t}\r\n \r\n$.index.open();\r\n{code}\r\nindex.xml\r\n{code}\r\n\r\n\t\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\r\n{code}\r\n\r\n\r\nThanks ", "updateAuthor": { "name": "shossain", "key": "shossain", "displayName": "Shak Hossain", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-12-30T11:58:53.000+0000", "updated": "2013-12-31T04:23:46.000+0000" }, { "id": "286334", "author": { "name": "shossain", "key": "shossain", "displayName": "Shak Hossain", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Since the issue is not reproducible anymore, closing it.", "updateAuthor": { "name": "shossain", "key": "shossain", "displayName": "Shak Hossain", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-12-31T04:24:16.000+0000", "updated": "2013-12-31T04:24:16.000+0000" } ], "maxResults": 6, "total": 6, "startAt": 0 } } }