anorgatarrak-wordpress-theme/app/catalog/item.component.js

11 lines
269 B
JavaScript
Raw Normal View History

angular.
module('item').
component('anDetail', {
2017-11-09 19:40:49 +01:00
templateUrl: localized.partials + '/item-detail.template.html',
controller: ['$routeParams',
function ItemDetailController($routeParams) {
this.itemId = $routeParams.itemId;
}
]
});