10 lines
290 B
JavaScript
10 lines
290 B
JavaScript
|
|
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;
|