Skip to content

Commit

Permalink
Simplify HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
DanDiplo committed Apr 4, 2022
1 parent 9515fa8 commit c142ea4
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions Umbraco.TestSite/App_Plugins/DiploMedia/Download.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
<div class="umb-dialog umb-pane" ng-controller="Diplo.Media.Controller as vm">
<div class="umb-dialog-body">
<umb-pane>
<p>Are you sure you want to download <strong>{{currentNode.name}}</strong> ?</p>
<div ng-controller="Diplo.Media.Controller as vm">
<umb-pane>
<p>Are you sure you want to download <strong>{{currentNode.name}}</strong> ?</p>

<div ng-show="vm.toggleShow">
<div ng-show="vm.toggleShow">

<p>Include all nested folders?</p>
<p>Include all nested folders?</p>

<umb-toggle checked="vm.checked"
on-click="vm.toggle()"
show-labels="true"
label-on="Yes"
label-off="No"
label-position="right"
hide-icons="true">
</umb-toggle>
</div>
<umb-toggle checked="vm.checked"
on-click="vm.toggle()"
show-labels="true"
label-on="Yes"
label-off="No"
label-position="right"
hide-icons="true">
</umb-toggle>
</div>

<hr />
<hr />

<umb-confirm on-confirm="vm.performDownload" on-cancel="vm.cancelDownload"></umb-confirm>
</umb-pane>

<umb-confirm on-confirm="vm.performDownload" on-cancel="vm.cancelDownload"></umb-confirm>

</umb-pane>
</div>
</div>

0 comments on commit c142ea4

Please sign in to comment.