Skip to content

Commit

Permalink
remove view all code
Browse files Browse the repository at this point in the history
fixes #2
  • Loading branch information
bmuenzenmeyer committed May 8, 2014
1 parent 8edfe79 commit 9077387
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions builder/patternlab.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,40 +286,6 @@ module.exports = function(grunt) {

}

//check to see if this bucket has a View All yet. If not, add it.
// var navItem = bucket.navItems[navItemIndex];
// if(navItem){
// var hasViewAll = navItem.navSubItemsIndex.indexOf('View All');
// if(hasViewAll === -1){
// console.log('add a view all pattern');

// var navSubItem = new oNavSubItem('View All');
// navSubItem.patternPath = pattern.flatPatternPath + '/index.html'; //this is likely wrong
// navSubItem.patternPartial = 'viewall-' + bucketName + '-' + pattern.patternSubGroup;

// //add the navSubItem
// console.log(navSubItem);
// navItem.navSubItems.push(navSubItem);
// navItem.navSubItemsIndex.push('View All');
// }
// }
}

//VIEW ALL LOGIC CAN LOOP THROUGH PATTERNS TOO
//only add if it's an atom, molecule, or organism
// if(pattern.patternGroup === 'atoms' || pattern.patternGroup === 'molecules' || pattern.patternGroup === 'organisms'){
// if(patternlab.viewAllPaths[pattern.patternGroup]){

// //add the pattern sub-group
// patternlab.viewAllPaths[pattern.patternGroup][pattern.patternSubGroup] = pattern.flatPatternPath;
// }
// else{
// //add the new group then the subgroup
// patternlab.viewAllPaths[pattern.patternGroup] = {};
// patternlab.viewAllPaths[pattern.patternGroup][pattern.patternSubGroup] = pattern.flatPatternPath;
// }
// }

};

//the patternlab site requires a lot of partials to be rendered.
Expand Down

0 comments on commit 9077387

Please sign in to comment.