source: Dev/trunk/src/qed-client/qed.profile.js @ 443

Last change on this file since 443 was 443, checked in by hendrikvanantwerpen, 12 years ago

Reorganized for Node --- the SVN gods hate us all!

Lost all historical info on moved files, because SVN is a f *.

Also we have Node now, serving both the static content and forwarding
database requests.

File size: 404 bytes
Line 
1var profile = (function(){
2    return {
3        resourceTags: {
4            amd: function (filename, mid) {
5                return (/\.js$/).test(filename);
6            },
7            declarative: function (filename, mid) {
8                return (/\.html$/).test(filename);
9            },
10            copyOnly: function(filename,mid) {
11                return false;
12            }
13        }
14    };
15})();
Note: See TracBrowser for help on using the repository browser.