"use strict"; angular.module("vocabulary") .component("lessonDisplay", { templateUrl: "/js/redesign-angular/lessons/lesson-display.html", controller: "LessonDisplayController", bindings: { categoryName: '<', lessonWordOrderType: '<' } }) .controller("LessonDisplayController", ["lessonService", function (lessonService) { var ctrl = this; ctrl.getCategoryId = lessonService.getChosenCategoryId; ctrl.getLessonId = lessonService.getLessonId; }]);