[Dojo-checkins] r809 - src/webui/widgets
dojo-checkins at dojotoolkit.org
dojo-checkins at dojotoolkit.org
Wed Jun 29 15:22:41 PDT 2005
Author: alex
Date: Wed Jun 29 15:22:40 2005
New Revision: 809
Modified:
src/webui/widgets/Parse.js
Log:
make the alerting on tags less stupid
Modified: src/webui/widgets/Parse.js
==============================================================================
--- src/webui/widgets/Parse.js (original)
+++ src/webui/widgets/Parse.js Wed Jun 29 15:22:40 2005
@@ -28,7 +28,9 @@
fragment[item].tagName = ltn;
returnValue.push(djTags[ltn](fragment[item], this, parentComp));
}else{
- dj_debug("no tag handler registed for type: ", ltn);
+ if(ltn.substr(0, 5)=="dojo:"){
+ dj_debug("no tag handler registed for type: ", ltn);
+ }
}
}
}
More information about the Dojo-checkins
mailing list