Changeset 8071
- Timestamp:
- 04/12/07 10:49:41 (20 months ago)
- Files:
-
- 1 modified
-
branches/0.4/buildscripts/buildUtil.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.4/buildscripts/buildUtil.js
r7930 r8071 337 337 //If we have a string for a regexp, do the dojo.require() and requireIf() removal now. 338 338 if(depRegExpString){ 339 //Make to escape regexp-sensitive characters 340 depRegExpString = depRegExpString.replace(/([\.\*])/g, "\\$1"); 341 //Build the regexp 339 342 var depRegExp = new RegExp("dojo\\.(require|requireIf)\\(.*?(" + depRegExpString + ")\\)(;?)", "g"); 340 343 dojoContents = dojoContents.replace(depRegExp, "");