diff options
| -rw-r--r-- | docs/src/ngdoc.js | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/docs/src/ngdoc.js b/docs/src/ngdoc.js index dc3ad5e1..148a400f 100644 --- a/docs/src/ngdoc.js +++ b/docs/src/ngdoc.js @@ -511,6 +511,9 @@ Doc.prototype = {        dom.h(method.shortName + '(' + signature.join(', ') + ')', method, function(){          dom.html(method.description);          method.html_usage_parameters(dom); +        self.html_usage_this(dom); +        method.html_usage_returns(dom); +          dom.h('Example', method.example, dom.html);        });      }); | 
