> Thomas just published the demo browser of the development version > with the "show source" feature: > <http://demo.qooxdoo.org/devel/demobrowser/>
Very good. You know what the next step is, don't you? A code editor, with immediate evaluation of changed code to see the effect on the demo. Just like wxPython. There are a few problems with it at the moment: In FF2 the font is quite small for the code. In IE7 I got: --------------------------- Error --------------------------- A Runtime Error has occurred. Do you wish to Debug? Line: 3213 Error: 'undefined' is null or not an object --------------------------- Yes No --------------------------- It's in this function in qx.dom.String, checked in with http://svn.sourceforge.net/qooxdoo/?rev=8606&view=rev: + for (var i=0, l=str.length; i<l; i++) + { + var chr = str[i]; + var code = chr.charCodeAt(0); [] doesn't work for string indexing in IE, and returns "undefined". You must use charAt. See http://code.google.com/p/trimpath/wiki/InelegantJavaScript for example which warns about using array indexing in IE. Hugh ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
