Re: [JSMentors] Re: Code review: MVC with backbone.js.

2011-11-13 Thread Andrew Dodson
*Garren*: I really wanted to do it that way, I began with http://documentcloud.github.com/backbone/examples/todos/index.html as a template. Which is pretty much as you described. However because this differs in that I have a favourites and flickr results which both have click img to preview, and

Re: [JSMentors] Re: Code review: MVC with backbone.js.

2011-11-13 Thread Andrew Dodson
I worked at the BBC for a while in London and the devs where were advocates for CustomEvents. Which is my current favourite approach to development. Something like... $.live({ 'hashchange,popstate' : function(){}, 'button click' : function(){}, 'img click' : function(){},

Re: [JSMentors] Re: Code review: MVC with backbone.js.

2011-11-13 Thread Andrew Dodson
/articles/web-roundups/20-javascript-frameworks-worth-checking-out/ On Sun, Nov 13, 2011 at 9:23 PM, Andrew Dodson andrew.j.dod...@gmail.comwrote: I worked at the BBC for a while in London and the devs where were advocates for CustomEvents. Which is my current favourite approach to development

[JSMentors] HTML11

2011-06-01 Thread Andrew Dodson
I was looking at http://www.html11.org/ http://www.html11.org/And wondered if the religion element will expose a save() method with a callback handler. -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via

Re: [JSMentors] javascript debugger

2011-05-28 Thread Andrew Dodson
FYI: IE9 tolerates extra commas - not to say that they should not be removed. I wonder whether you are calling console.log traditionally or with apply/call ? On 27 May 2011 23:30, Britto antony.bri...@gmail.com wrote: Error is some where u r accessing a DOM element before DOM ready. Fix that

Re: [JSMentors] Diagnosing Sluggishness in IE9 RC?

2011-03-03 Thread Andrew Dodson
Try adding this http://developer.yahoo.com/yui/profiler/ Do you have the project online where i can access it? And a description of the action/event which is sluggish? thxs On Thu, Mar 3, 2011 at 7:00 PM, Sergio Cinos sergio.ci...@gmail.com wrote: I'll try two things: a) Inspect the

Re: [JSMentors] Nested Property Access

2011-02-15 Thread Andrew Dodson
Ha awesome. Took me a minute to get it and now I quite like it. However some kind of intellisense is usually at hand to save repeatedly writing out the parent objects. On 15 Feb 2011 09:16, Sam Merrell merrell@gmail.com wrote: Hi all , What are the groups thoughts on safely accessing a

Re: [JSMentors] Philosophical question

2011-02-13 Thread Andrew Dodson
Mike I had to make a similar decision when I made http://toobify.com - similar because, whilst I don't have server side html being pulled in I am pulling in almost all content from API's. And perhaps this is how you should access your serverside data. Access it as a Restful API. However leaving