meteor+angular を使用しています。ディレクティブで templateUrl を使用して nav.ng.html をインクルードしたいのです
が、エラーがスロー されます
Error: [$compile:tplrt] Template for directive 'checkNav' must have exactly one root element
index.html:
5 <body ng-app='checkApp' ng-controller='CheckCtrl'>
6 <check-nav></check-nav>
7 </body>
ディレクティブ.js
1 angular.module 'checkApp'
2 .directive 'checkNav', () ->
3 ┊ restrict: 'E'
4 ┊ replace: true
5 ┊ templateUrl: 'client/templates/check-views/nav.ng.html'
nav.ng.html
<div>test</div>
どうすれば修正できますか?