summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/freeipa.profile.js
blob: 7a20134a5863a7fca6738854fe87d1b55e63b143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Dojo builder profile file
//


var profile = (function(){

    var js_files = /\.js$/;

    return {
        resourceTags: {

            // all JavaScript files are AMD modules
            amd: function(filename, mid) {
                return js_files.test(filename);
            }
        }
    };
})();