summaryrefslogtreecommitdiff
path: root/jarmonbuild/yuidoc_template/classmap.tmpl
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-12-09 20:38:04 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-12-09 20:38:04 -0500
commit058613310973365a64c2bf94f7a5ab9a2f1b14b9 (patch)
tree62f95da57ebd0bce277deff694b4fcf2e9470fd5 /jarmonbuild/yuidoc_template/classmap.tmpl
parente33b44586bc0ffd4f1f3e5b7127dbbb3b4e15151 (diff)
Switch from yuidoc to JSDoc3.
Before it downloaded yuidoc for you; not it expects that jsdoc is already installed. Note that it was old-school, abandoned yuidoc, not its successor yuidocjs. The migration path from yuidoc->jsdoc actually seemed simpler than yuidoc->yuidocjs.
Diffstat (limited to 'jarmonbuild/yuidoc_template/classmap.tmpl')
-rw-r--r--jarmonbuild/yuidoc_template/classmap.tmpl15
1 files changed, 0 insertions, 15 deletions
diff --git a/jarmonbuild/yuidoc_template/classmap.tmpl b/jarmonbuild/yuidoc_template/classmap.tmpl
deleted file mode 100644
index 34525a4..0000000
--- a/jarmonbuild/yuidoc_template/classmap.tmpl
+++ /dev/null
@@ -1,15 +0,0 @@
-YAHOO.env.classMap = ${pkgmap};
-
-YAHOO.env.resolveClass = function(className) {
- var a=className.split('.'), ns=YAHOO.env.classMap;
-
- for (var i=0; i<a.length; i=i+1) {
- if (ns[a[i]]) {
- ns = ns[a[i]];
- } else {
- return null;
- }
- }
-
- return ns;
-};