Merge pull request #2316 from nextcloud/fix-personal-loading-icon
Loading icon fix #2198
This commit is contained in:
commit
10db5bf7d2
|
@ -96,7 +96,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
toggleLoading: function (state) {
|
toggleLoading: function (state) {
|
||||||
this.$('.token-list').toggleClass('icon-loading', state);
|
this.$('table').toggleClass('icon-loading', state);
|
||||||
},
|
},
|
||||||
|
|
||||||
_toggleHeader: function (show) {
|
_toggleHeader: function (show) {
|
||||||
|
|
|
@ -286,7 +286,7 @@ if($_['passwordChangeSupported']) {
|
||||||
<div id="sessions" class="section">
|
<div id="sessions" class="section">
|
||||||
<h2><?php p($l->t('Sessions'));?></h2>
|
<h2><?php p($l->t('Sessions'));?></h2>
|
||||||
<span class="hidden-when-empty"><?php p($l->t('Web, desktop and mobile clients currently logged in to your account.'));?></span>
|
<span class="hidden-when-empty"><?php p($l->t('Web, desktop and mobile clients currently logged in to your account.'));?></span>
|
||||||
<table>
|
<table class="icon-loading">
|
||||||
<thead class="token-list-header">
|
<thead class="token-list-header">
|
||||||
<tr>
|
<tr>
|
||||||
<th><?php p($l->t('Device'));?></th>
|
<th><?php p($l->t('Device'));?></th>
|
||||||
|
@ -294,7 +294,7 @@ if($_['passwordChangeSupported']) {
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody class="token-list icon-loading">
|
<tbody class="token-list">
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -302,7 +302,7 @@ if($_['passwordChangeSupported']) {
|
||||||
<div id="apppasswords" class="section">
|
<div id="apppasswords" class="section">
|
||||||
<h2><?php p($l->t('App passwords'));?></h2>
|
<h2><?php p($l->t('App passwords'));?></h2>
|
||||||
<p><?php p($l->t('Passcodes that give an app or device permissions to access your account.'));?></p>
|
<p><?php p($l->t('Passcodes that give an app or device permissions to access your account.'));?></p>
|
||||||
<table>
|
<table class="icon-loading">
|
||||||
<thead class="hidden-when-empty">
|
<thead class="hidden-when-empty">
|
||||||
<tr>
|
<tr>
|
||||||
<th><?php p($l->t('Name'));?></th>
|
<th><?php p($l->t('Name'));?></th>
|
||||||
|
@ -310,7 +310,7 @@ if($_['passwordChangeSupported']) {
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody class="token-list icon-loading">
|
<tbody class="token-list">
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div id="app-password-form">
|
<div id="app-password-form">
|
||||||
|
|
Loading…
Reference in New Issue