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

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

Reorganizing for builds.

Mixing server and client doesn't play nice with builds. I'm going to
seperate them even more, so they don't share a Dojo version.

File size: 312 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        }
11    };
12})();
Note: See TracBrowser for help on using the repository browser.