Update Umbraco to 7.12.2

This commit is contained in:
2018-09-16 15:08:47 -04:00
parent 7ed7776432
commit 616ab81bad
764 changed files with 142787 additions and 66790 deletions
@@ -1,7 +1,15 @@
<ul class="unstyled">
<li ng-repeat="preval in model.prevalues">
<label class="checkbox">
<input type="radio" ng-model="model.value" value="{{preval.value || preval}}" /> {{preval.label || preval.value || preval}}
</label>
</li>
</ul>
<ul class="unstyled" ng-if="model.prevalues">
<li ng-repeat="preval in model.prevalues">
<label class="checkbox">
<input type="radio" ng-model="model.value" value="{{preval.value || preval}}" /> {{preval.label || preval.value || preval}}
</label>
</li>
</ul>
<ul class="unstyled" ng-if="model.config.prevalues">
<li ng-repeat="(key, value) in model.config.prevalues ">
<label class="checkbox">
<input type="radio" ng-model="model.value" value="{{value.value}}" /> {{value.label}}
</label>
</li>
</ul>