source: Dev/trunk/src/client/dojox/app/tests/layoutApp/layoutApp.profile.js

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

  • Property svn:executable set to *
File size: 315 bytes
Line 
1var profile = {
2        resourceTags:{
3                declarative: function(filename){
4                        return /\.html?$/.test(filename); // tags any .html or .htm files as declarative
5                },
6                amd: function(filename){
7                        return /\.js$/.test(filename);
8                },
9                copyOnly: function(filename, mid){
10                        return mid == "layoutApp/build.profile";
11                }
12        }
13};
Note: See TracBrowser for help on using the repository browser.