From: Sauli Tähkäpää Date: Mon, 9 Nov 2015 11:58:36 +0000 (+0200) Subject: Create links also for documented behaviors. X-Git-Tag: 0.3.0-beta12~2^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F21%2Fhead;p=vaadin-core.git Create links also for documented behaviors. --- diff --git a/apidoc/index.html b/apidoc/index.html index afc6729..522a6a1 100644 --- a/apidoc/index.html +++ b/apidoc/index.html @@ -59,7 +59,7 @@ for(var i=0;i < types.length; i++) { var type = getPropertyType(types[i]); - if(result.elementsByTagName[type]) { + if(result.elementsByTagName[type] || result.behaviorsByName[type]) { var a = createLinkElement(types[i]); types[i].textContent = ''; @@ -91,7 +91,7 @@ _.forEach(document.querySelector('#properties').querySelectorAll('iron-doc-property'), function(p) { if(!isPrimitiveType(p.querySelector('#type').textContent)) { - p.querySelector('#default').setAttribute('style', 'display:none'); + p.querySelector('.annotation').setAttribute('style', 'display:none'); } }); @@ -109,7 +109,8 @@ hyd.Analyzer.analyze('../../vaadin-grid/vaadin-grid-doc.html') .then(function(result) { - document.querySelector('iron-doc-viewer').descriptor = result.elementsByTagName[getElementTag()]; + var descriptor = result.elementsByTagName[getElementTag()] || result.behaviorsByName[getElementTag()]; + document.querySelector('iron-doc-viewer').descriptor = descriptor; return result; })