|
|
@@ -18,18 +18,18 @@
|
|
|
<span class="gf-form-label width-9">For each value of</span>
|
|
|
<dash-repeat-option panel="ctrl.panel"></dash-repeat-option>
|
|
|
</div>
|
|
|
- <div class="gf-form" ng-show="ctrl.panel.repeat">
|
|
|
- <span class="gf-form-label width-9">Min width</span>
|
|
|
- <select class="gf-form-input" ng-model="ctrl.panel.minSpan" ng-options="f for f in [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24]">
|
|
|
- <option value=""></option>
|
|
|
- </select>
|
|
|
- </div>
|
|
|
<div class="gf-form" ng-show="ctrl.panel.repeat">
|
|
|
<span class="gf-form-label width-9">Direction</span>
|
|
|
<select class="gf-form-input" ng-model="ctrl.panel.repeatDirection" ng-options="f.value as f.text for f in [{value: 'v', text: 'Vertical'}, {value: 'h', text: 'Horizontal'}]">
|
|
|
<option value=""></option>
|
|
|
</select>
|
|
|
</div>
|
|
|
+ <div class="gf-form" ng-show="ctrl.panel.repeat && ctrl.panel.repeatDirection == 'h'">
|
|
|
+ <span class="gf-form-label width-9">Min width</span>
|
|
|
+ <select class="gf-form-input" ng-model="ctrl.panel.minSpan" ng-options="f for f in [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24]">
|
|
|
+ <option value=""></option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<panel-links-editor panel="ctrl.panel"></panel-links-editor>
|