Release build result.feed.entry[x] not an object
screen root {
var result = async(YQL.query……whenLoaded(result) {
script {
foreach(i in range(0,result.feed.entry.length)) {
items.add(xxxx);
}
}
}
}If I use items.add(result.feed.entry[i]) as xxxx it works in www but not in www.release I doesn’t get an object. I had to add
var entries = result.feed.entry;And use entries[i] as xxxx to get it working in www.release
Submitted by Terje Pedersen on 15 June 2011 at 13:57
Issue Log
On 16 June 2011 at 22:11 Zef Hemel commented:
This looks like a bug in UglifyJS, the code minifier that mobl uses. Maybe I have to update to a newer version, hopefully that solves the issue.
On 8 July 2011 at 13:49 Zef Hemel closed this issue.
On 8 July 2011 at 13:49 Zef Hemel commented:
Hopefully this will be solved with this: https://yellowgrass.org/issue/mobl/238
Log in to post comments