mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-03-04 00:13:06 +08:00
chore(docs): mark static properties as properties Closes #962
This commit is contained in:
parent
e902856089
commit
1134ac96b6
@ -5,6 +5,15 @@ module.exports = function collectInputsOutputs() {
|
|||||||
$process: function(docs) {
|
$process: function(docs) {
|
||||||
docs.forEach(function(doc) {
|
docs.forEach(function(doc) {
|
||||||
|
|
||||||
|
if (doc.statics && doc.statics.length) {
|
||||||
|
for (var i in doc.statics) {
|
||||||
|
// identify properties to differentiate from statics
|
||||||
|
if (typeof doc.statics[i].parameters == 'undefined') {
|
||||||
|
doc.statics[i].isProperty = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (doc.members && doc.members.length) {
|
if (doc.members && doc.members.length) {
|
||||||
var members = [];
|
var members = [];
|
||||||
var inputs = [];
|
var inputs = [];
|
||||||
|
Loading…
Reference in New Issue
Block a user