Hi,

I load my javascripts files via:
<script type="text/javascript" src="/js/jquery-1.2.6.min.js"></script>
<script type="text/javascript" src="/js/jajax.js"></script>

I'ts good but, i load any page with this in my browser like
http://127.0.0.1:5000/save,
i open firebug, go to net and look at the javascript file request
content returned by the server, and the file content is 'loaded' three
times.

example:

blah.js contains:

/* blah */
function(blah) {
alert('blah')
}

In firebug i can look:
/* blah */
function(blah) {
alert('blah')
}
/* blah */
function(blah) {
alert('blah')
}
/* blah */
function(blah) {
alert('blah')
}

But if i access to url/js/blah.js it look like
/* blah */
function(blah) {
alert('blah')
}

If someone have an idea, i can't find what is the problem here :/

(i don't think it's my javascript the problem, the jQuery and my own
javascript have the same problem)

I can post my templates and/or controller if needed.

Thanks.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" 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/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to