From 787688ef33cc0a738104fdd43025d3b4712110df Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Fri, 22 Aug 2014 17:27:29 -0600 Subject: [PATCH] Copy stability from doclet to observable --- config/jsdoc/api/plugins/observable.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/jsdoc/api/plugins/observable.js b/config/jsdoc/api/plugins/observable.js index bd9076647e..cc480d42c0 100644 --- a/config/jsdoc/api/plugins/observable.js +++ b/config/jsdoc/api/plugins/observable.js @@ -34,6 +34,9 @@ exports.handlers = { } else if (doclet.name.indexOf('set') === 0) { observable.readonly = false; } + if (doclet.stability) { + observable.stability = doclet.stability; + } if (!cls.observables) { cls.observables = []; }