created a route for item details

This commit is contained in:
Senad Uka
2015-01-24 08:20:11 +01:00
parent 848394ea92
commit f5eca4a758
8 changed files with 60 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
var StartPageSectionsView = require('../views/startPageSectionsView'),
StartPageItemsView = require('../views/startPageItemsView');
function ItemDetailsController(id,slug) {
alert("clicked on an item" + id + " with a slug " + slug);
}
module.exports = ItemDetailsController;