Fix "split" title when it's more than 2 words

pull/9/head
rprieto 10 years ago
parent 8531b26b2a
commit 8a468026da

@ -26,7 +26,7 @@ exports.gallery = function(list, active, title, css) {
links: links,
gallery: active,
title: titleParts[0],
subtitle: titleParts.slice(1)
subtitle: titleParts.slice(1).join(' ')
});
};

Loading…
Cancel
Save