Update Umbraco to 7.12.2
This commit is contained in:
@@ -1,30 +1,27 @@
|
||||
<div ng-controller="Umbraco.PropertyEditors.MacroContainerController" class="umb-editor umb-macrocontainer">
|
||||
|
||||
<ul class="unstyled list-icons"
|
||||
ui-sortable="sortableOptions"
|
||||
ng-model="renderModel">
|
||||
<li ng-repeat="macro in renderModel" style="max-width: 300px">
|
||||
<div ui-sortable="sortableOptions" ng-model="renderModel">
|
||||
<div ng-repeat="macro in renderModel">
|
||||
<umb-node-preview
|
||||
name="macro.macroAlias"
|
||||
icon="macro.icon"
|
||||
description="macro.details"
|
||||
sortable="!sortableOptions.disabled"
|
||||
allow-remove="allowRemoveButton"
|
||||
allow-open="allowOpenButton && macro.details"
|
||||
on-remove="remove($index)"
|
||||
on-open="edit($index)">
|
||||
</umb-node-preview>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<i class="icon icon-navigation handle"></i>
|
||||
|
||||
<div class="pull-right">
|
||||
<a href ng-click="edit($index)"><i ng-show="macro.details" class="icon icon-edit"></i></a>
|
||||
<i class="icon icon-delete red" ng-click="remove($index)" ></i>
|
||||
</div>
|
||||
|
||||
<a href="#" prevent-default ng-click="edit($index)">{{macro.macroAlias}}</a>
|
||||
<small class="umb-detail">{{macro.details}}</small>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="unstyled list-icons" ng-hide="model.config.max && model.config.max > 0 && renderModel.length >= model.config.max">
|
||||
<li>
|
||||
<i class="icon icon-add blue"></i>
|
||||
<a href="#" ng-click="add()" prevent-default>
|
||||
<localize key="general_add">Add</localize>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<a ng-hide="model.config.max && model.config.max > 0 && renderModel.length >= model.config.max"
|
||||
class="umb-node-preview-add"
|
||||
href=""
|
||||
ng-click="add()"
|
||||
prevent-default>
|
||||
<localize key="general_add">Add</localize>
|
||||
</a>
|
||||
|
||||
<umb-overlay
|
||||
ng-if="macroPickerOverlay.show"
|
||||
|
||||
Reference in New Issue
Block a user