]> BookStack Code Mirror - bookstack/blobdiff - resources/views/comments/comments.blade.php
#47 - Fixes the issues with the test case.
[bookstack] / resources / views / comments / comments.blade.php
index 107052e87fe79b88319860c90bdc5b1717df8fb0..ffa75cfed227638fc72e1615c32803134994045e 100644 (file)
@@ -1,19 +1,18 @@
-@section('head')
-    <script src="{{ baseUrl("/libs/simplemde/simplemde.min.js") }}"></script>
-@stop
 <script type="text/ng-template" id="comment-list-item.html">
     @include('comments/list-item')
 </script>
 <script type="text/ng-template" id="comment-reply.html">
-    @include('comments/comment-reply')
+    @include('comments/comment-reply', ['pageId' => $pageId])
 </script>
-<div ng-controller="CommentListController as vm" ng-init="pageId = <?= $page->id ?>" class="comments-list" ng-cloak>   
+<div ng-controller="CommentListController as vm" ng-init="pageId = <?= $page->id ?>" class="comments-list" ng-cloak>
 <h3>@{{vm.totalCommentsStr}}</h3>
-<hr> 
-    <div class="comment-box" ng-repeat="comment in vm.comments track by comment.id">        
+<hr>
+    <div class="comment-box" ng-repeat="comment in vm.comments track by comment.id">
         <div ng-include src="'comment-list-item.html'">
-            
+
         </div>
     </div>
-</div>
-@include('comments/add', ['pageId' => $pageId])
\ No newline at end of file
+    <div ng-if="::vm.canComment()">
+        @include('comments/comment-reply', ['pageId' => $pageId])
+    </div>
+</div>
\ No newline at end of file