| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1× 1× | /**
* Created by cklimkowsky on 4/27/15.
*/
angular
.module('coopEval')
.directive('ceParagraphQuestionNew', paragraphQuestionNew);
function paragraphQuestionNew() {
return {
restrict: 'E',
scope: {
question: '=',
deleteQuestion: '&'
},
templateUrl: 'partials/form/paragraph-question-new.html'
}
} |