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

Last change on this file since 431 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
RevLine 
[407]1var profile = (function(){
2    return {
3        resourceTags: {
4            amd: function (filename, mid) {
[426]5                return (/\.js$/).test(filename);
[407]6            },
7            declarative: function (filename, mid) {
[426]8                return (/\.html$/).test(filename);
[407]9            },
10            copyOnly: function(filename,mid) {
11                return false;
12            }
13        }
14    };
15})();
Note: See TracBrowser for help on using the repository browser.