Skip to content

Commit

Permalink
Merge pull request #26 from nextcloud/polish
Browse files Browse the repository at this point in the history
Release Polish
  • Loading branch information
LukasReschke authored Aug 9, 2016
2 parents 131c865 + d538a41 commit 1d75257
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion js/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ $(function() {
break;
}
el.html(t('user_saml', text));
nextSibling.toggleClass('hidden');

if (nextSibling.is(":visible")) {
nextSibling.slideUp();
} else {
nextSibling.slideDown();
}
});
});
2 changes: 1 addition & 1 deletion templates/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/** @var array $_ */
?>
<form id="user-saml" class="section" action="#" method="post">
<h2><?php p($l->t('SAML')); ?></h2>
<h2 class="inlineblock"><?php p($l->t('SAML')); ?></h2>
<div id="user-saml-save-indicator" class="msg success inlineblock" style="display: none;">Saved</div>

<div id="user-saml-settings">
Expand Down

0 comments on commit 1d75257

Please sign in to comment.