This commit is contained in:
FinnStutzenstein 2017-04-06 15:49:42 +02:00 committed by Emanuel Schütze
parent 598dc30486
commit cefdabc3d7
3 changed files with 8 additions and 6 deletions

View File

@ -9,6 +9,8 @@ Version 2.2 (unreleased)
Motions:
- New export dialog.
- Fixed issue when creating/deleting motion comment fields in the settings.
Version 2.1.1 (2017-04-05)
==========================

View File

@ -994,16 +994,16 @@ angular.module('OpenSlidesApp.core.site', [
};
// For comments input
$scope.addComment = function (key, parent) {
$scope.addComment = function (configOption, parent) {
parent.value.push({
name: gettextCatalog.getString('New'),
public: false,
});
$scope.save(key, parent.value);
$scope.save(configOption, parent.value);
};
$scope.removeComment = function (key, parent, index) {
$scope.removeComment = function (configOption, parent, index) {
parent.value.splice(index, 1);
$scope.save(key, parent.value);
$scope.save(configOption, parent.value);
};
// For majority method

View File

@ -34,14 +34,14 @@
{{ (entry.public ? 'Public' : 'Private') | translate }}
</button>
<button type="button" class="btn btn-default"
ng-click="removeComment(configOption.key, $parent, $index)">
ng-click="removeComment(configOption, $parent, $index)">
<i class="fa fa-minus"></i>
<translate>Remove</translate>
</button>
</span>
</div>
<div>
<button type="button" ng-click="addComment(configOption.key, $parent)"
<button type="button" ng-click="addComment(configOption, $parent)"
class="btn btn-default btn-sm">
<i class="fa fa-plus"></i>
<translate>Add new comment field</translate>