Quote:
Originally Posted by Analogus
There is no repository.
|
Why not use "clone" feature of the Google Code?
PRS+ is GPL licensed, so if you are distributing alternative builds, you
must provide sources of them as well.
Quote:
Originally Posted by Analogus
Question to developers:
I have made a FUNCTION in say A.JS. How do I call the function in B.JS when needed?
A.
|
Depends how those js files are initialized. In general, each function (and js is normally initialized as a separate function) has it's own namespace. If files are combined prior to be initialized, then it's the same namespace and everything should be visible.