Hi Christopher,
I'd like to throw my 2cts in:
preprocess(page) {}
-----------------
a preprocess(page) {} callback would be nice to have in the iui-lib.
This callback should allow preprocessing incoming data BEFORE attaching it
to the doc. This gives the ability to 'look' at the data before it gets
rendered (and also allows for some private caching or whatever without
touching the lib-code).
XMLHttpRequest needs a try/catch block
-----------------------------------
To be safe when handling various kinds of links, the
XMLHttpRequest.open(...) should be inside a try catch block, just in case
something went wrong.
try {
req.open(method || "GET", href, true);
req.send(null);
}
catch(e) {
if (cb)
cb(false);
return null;
}
animation:
---------
IMHO animation should be removed from the lib (or at least make it
optional). Animation in Mobile Safari works poorly especially if it comes to
longer lists. I guess this is a flaw in MS - Javascript...
best
andy
at 08.10.2007 21:01 Uhr, Christopher Allen wrote:
> So who has bugs, changes, or additions to iUI that they would like to
> submit? What kinds of changes in iUI would you like to see?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"iPhoneWebDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/iphonewebdev?hl=en
-~----------~----~----~----~------~----~------~--~---