dont auto apply settings in tagcloud (#13859)

This commit is contained in:
Peter Pisljar 2017-09-11 18:00:49 +02:00 committed by ppisljar
parent 734edd8ebc
commit c6879441ee
2 changed files with 2 additions and 4 deletions

View file

@ -1,11 +1,11 @@
<div class="form-group">
<div class="form-group">
<label>Text Scale</label>
<select class="form-control" ng-model="vis.params.scale" ng-options="mode for mode in config.collections.scales" ng-change="$parent.stageEditableVis()"></select>
<select class="form-control" ng-model="vis.params.scale" ng-options="mode for mode in config.collections.scales"></select>
</div>
<div class="form-group">
<label>Orientations</label>
<select class="form-control" ng-model="vis.params.orientation" ng-options="mode for mode in config.collections.orientations" ng-change="$parent.stageEditableVis()"></select>
<select class="form-control" ng-model="vis.params.orientation" ng-options="mode for mode in config.collections.orientations"></select>
</div>
<div class="form-group">
<label>Font Size</label>

View file

@ -26,8 +26,6 @@ uiModules.get('kibana/table_vis')
const fontSize = slider.noUiSlider.get();
$scope.vis.params.minFontSize = parseInt(fontSize[0], 10);
$scope.vis.params.maxFontSize = parseInt(fontSize[1], 10);
$scope.vis.updateState();
$scope.$apply();
});
}