Remove unused Dockerfile view directive

This commit is contained in:
Joseph Schorr 2017-06-23 13:32:11 -04:00
parent 70f26754b8
commit 255bebcc92
3 changed files with 0 additions and 69 deletions

View file

@ -1,15 +0,0 @@
<div class="dockerfile-view-element">
<div class="dockerfile-line" ng-repeat="line in lines">
<div ng-switch on="line.kind">
<div class="command entry" ng-switch-when="command">
<div class="dockerfile-command" command="line.text"></div>
</div>
<div class="comment entry" ng-switch-when="comment">
{{ line.text || ' ' }}
</div>
<div class="text entry" ng-switch-default>
{{ line.text || '&nbsp;' }}
</div>
</div>
</div>
</div>