9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
|
app.directive('commentReply', ['config', function(config){
|
||
|
return {
|
||
|
templateUrl: config.rootPath+ 'templates/comment_reply.html',
|
||
|
scope: {
|
||
|
i: "=",
|
||
|
journal: "="
|
||
|
}
|
||
|
}
|
||
|
}]);
|