fixed node name for images

This commit is contained in:
soulgalore 2014-06-23 12:42:42 +02:00
parent ec243dbb7d
commit c066250122
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ module.exports = new Aggregator('cssImagesPerPage',
'', 2,
function(pageData) {
if (pageData.yslow) {
if (pageData.yslow.stats.cssimages) {
this.stats.push(pageData.yslow.stats.cssimages.r);
if (pageData.yslow.stats.cssimage) {
this.stats.push(pageData.yslow.stats.cssimage.r);
} else {
this.stats.push(0);
}