Comparing version 1.0.0-rc.16 to 1.0.0-rc.17
# Changelog | ||
## 1.0.0-rc.17 | ||
* Fixed an issue with item count in console ([#102](https://github.com/SassDoc/sassdoc/issues/102)) | ||
* Made parameters table headers WAI 2.0 compliant ([#101](https://github.com/SassDoc/sassdoc/pull/101)) | ||
* Fixed a logic issue in the view | ||
## 1.0.0-rc.16 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "sassdoc", | ||
"description": "Like JSDoc but for Sass files.", | ||
"author": "Hugo Giraudel <hugo.giraudel@gmail.com> http://hugogiraudel.com", | ||
"author": "Hugo Giraudel <hugo.giraudel@gmail.com> (http://hugogiraudel.com)", | ||
"contributors": [ | ||
"Fabrice Weinberg <Fabrice@weinberg.me>", | ||
"Valérian Galliat", | ||
"Pascal Duez" | ||
{ "name": "Fabrice Weinberg", "url": "https://twitter.com/fweinb", "email": "fabrice@weinberg.me" }, | ||
{ "name": "Valérian Galliat", "url": "https://twitter.com/valeriangalliat" }, | ||
{ "name": "Pascal Duez", "url": "https://twitter.com/pascalduez" } | ||
], | ||
"version": "1.0.0-rc.16", | ||
"version": "1.0.0-rc.17", | ||
"license": { | ||
@@ -12,0 +12,0 @@ "type": "MIT", |
@@ -217,4 +217,4 @@ 'use strict'; | ||
logger.log(response.length + ' item' + (response.length > 1 ? 's' : '') + ' documented.'); | ||
var key; | ||
var itemCount = 0; | ||
var result = {}; | ||
@@ -293,2 +293,9 @@ var index = {}; | ||
// Item count | ||
for (key in result) { | ||
itemCount += result[key].length; | ||
} | ||
logger.log(itemCount + ' item' + (itemCount > 1 ? 's' : '') + ' documented.'); | ||
return result; | ||
@@ -295,0 +302,0 @@ }); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
168069
2418