Re: jquery document ready aggregation

2011-02-28 Thread Bill Freeman
If I'm remembering correctly, the context is composed of a list of dictionaries. When you reference a value, the layers are searched, most recently added first, until one is found that has the variable you want (or not). When you set a variable, it always uses the top layer, even if the same varia

Re: jquery document ready aggregation

2011-02-25 Thread kost BebiX
Here's a usage example of that: http://paste.pocoo.org/show/33/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+u

jquery document ready aggregation

2011-02-25 Thread kost BebiX
Hi! I would like to write two simple tags, one would be called {% domready %}, and another one is {% domready_render %}, first will add some js to some buffer and second will just join it alltogather and print it (at base template in some $(document).ready(...)). So my question is: where/how do