"use strict"; angular.module("vocabulary") .component("wordRow", { templateUrl: "/js/redesign-angular/words/word-row.html", controller: "WordRow", bindings: { index: "<", word: "<" } }) .controller("WordRow", ["partsOfSpeechService", function(partsOfSpeechService) { var ctrl = this; ctrl.abbreviatePartOfSpeech = partsOfSpeechService.abbreviate; }]);