source: Dev/trunk/client/qed/qed.profile.js @ 426

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

Added grunt tasks and code cleanup.

Added grunt for less and jshint procesing.
Cleanup of code to pass jshint (one bug found :).

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.