diff --git a/template/js/History.js b/template/app/History.js similarity index 100% rename from template/js/History.js rename to template/app/History.js diff --git a/template/index.html b/template/index.html index 345fe69cd18c1de562dae506ceec06338cd3e622..1c4d4655874f3880411111d1b7655a63313b51d5 100644 --- a/template/index.html +++ b/template/index.html @@ -34,8 +34,7 @@ - - + diff --git a/template/index_old.html b/template/index_old.html deleted file mode 100644 index ef6bc637e42bbdcdc1636498368e1300053b2fb8..0000000000000000000000000000000000000000 --- a/template/index_old.html +++ /dev/null @@ -1,119 +0,0 @@ - - -
-', - '' - ); - - return this.hierarchyTpl.apply({ - tree: cls.superclasses.length ? this.renderClassTree(cls.superclasses.concat(cls.name), true) : "", - mixins: Ext.Array.map(cls.allMixins, this.renderLink, this) - }); - }, - - renderClassTree: function(superclasses, firstChild) { - if (superclasses.length === 0) { - return ""; - } - - this.classTreeTpl = this.classTreeTpl || new Ext.XTemplate( - '', - ' ', - 'Hierarchy
', - '{tree}', - '', - ' ', - 'Mixins
', - '', - ' ', - '{.}', - '