Merge pull request #3034 from FinnStutzenstein/TemplateFixes

Small template improvements
This commit is contained in:
Norman Jäckel 2017-03-03 14:23:05 +01:00 committed by GitHub
commit 4744e1ca99
6 changed files with 15 additions and 6 deletions

View File

@ -1331,6 +1331,10 @@ img {
.scroll-x-container {
overflow-x: auto;
}
.import-preview p {
margin: 0;
padding: 0;
}
/* user details */
.user_details fieldset {

View File

@ -79,8 +79,8 @@ angular.module('OpenSlidesApp.motions.motionservices', ['OpenSlidesApp.motions',
motion = _motion; // If this is not updated,
obj.originalHtml = motion.getTextWithLineBreaks(versionId);
obj.changed = false;
obj.editor.setReadOnly(true);
if (obj.editor) {
obj.editor.setReadOnly(true);
obj.editor.setData(obj.originalHtml);
}
};

View File

@ -1263,7 +1263,7 @@ angular.module('OpenSlidesApp.motions.site', [
{headers: {'Content-Type': 'application/json'},
data: JSON.stringify({version_number: version.version_number})})
.then(function(success) {
$scope.showVersion(motion.active_version);
$scope.showVersion({id: motion.active_version});
});
};
// check if user is allowed to see at least one comment field

View File

@ -495,7 +495,7 @@
<span ng-if="$parent.version == version.id">
<strong><translate>Version</translate> {{ version.version_number }}</strong>
</span>
<a ng-if="$parent.version != version.id" ng-click="showVersion(version)">
<a href="" ng-if="$parent.version != version.id" ng-click="showVersion(version)">
<translate>Version</translate> {{ version.version_number }}
</a>
<!-- active version -->

View File

@ -54,7 +54,9 @@
</span>
<button type="button" class="btn btn-sm btn-default"
ng-click="lineNumberForm.$show()"
ng-if="lineNumberMode != 'none'">
ng-if="lineNumberMode != 'none'"
uib-tooltip="{{ 'Jump to a given line' | translate }}"
tooltip-class="nobr">
<i class="fa fa-share"></i>
<translate>go</translate>
</button>

View File

@ -77,8 +77,11 @@
<span ng-if="motion.text_error" title="{{ motion.text_error | translate }}">
<i class="fa fa-exclamation-triangle"></i>
</span>
{{ motion.text | limitTo:80 }}{{ motion.text.length > 80 ? '...' : '' }}
<td>{{ motion.reason | limitTo:80 }}{{ motion.reason.length > 80 ? '...' : '' }}
<span class="import-preview" ng-bind-html="motion.text | limitTo:90 | trusted"></span>
{{ motion.text.length > 90 ? '...' : '' }}
<td>
<span class="import-preview" ng-bind-html="motion.reason | limitTo:90 | trusted"></span>
{{ motion.reason.length > 90 ? '...' : '' }}
<td ng-class="{ 'text-warning': motion.submitter_create }">
<span ng-if="motion.submitter_create" title="{{ motion.submitter_create | translate }}">
<i class="fa fa-plus-circle"></i>