1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1× 1× | /** * Created by cklimkowsky on 3/18/15. */ angular .module('coopEval') .directive('ceLikertScales', likertScales); function likertScales() { return { restrict: 'E', scope: { questionGroup: '=' }, templateUrl: 'partials/form/likert-scales.html' } } |