[Pkg-owncloud-commits] [owncloud] 219/239: switch to large spinner
David Prévot
taffit at moszumanska.debian.org
Fri Nov 29 01:32:41 UTC 2013
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit e0924a5f070b7a22d57cebdc6379e385643ca400
Author: Bjoern Schiessle <schiessle at owncloud.com>
Date: Wed Nov 27 21:58:38 2013 +0100
switch to large spinner
---
apps/files_encryption/js/detect-migration.js | 4 ++--
core/css/styles.css | 5 +++++
core/img/loading-dark-small.gif | Bin 1324 -> 0 bytes
3 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/apps/files_encryption/js/detect-migration.js b/apps/files_encryption/js/detect-migration.js
index e726515..dea723f 100644
--- a/apps/files_encryption/js/detect-migration.js
+++ b/apps/files_encryption/js/detect-migration.js
@@ -7,7 +7,7 @@
$(document).ready(function(){
- $('form[name="login"]').on('submit', function(ev) {
+ $('form[name="login"]').on('submit', function() {
var user = $('#user').val();
var password = $('#password').val();
$.ajax({
@@ -19,7 +19,7 @@ $(document).ready(function(){
success: function(response) {
if (response.data.migrationCompleted === false) {
var message = t('files_encryption', 'Initial encryption started... This can take some time. Please wait.');
- $('p[id="message"]').html('<img src="' + OC.imagePath('core', 'loading-dark-small.gif') + '"/> ' + message);
+ $('p[id="message"]').html('<img src="' + OC.imagePath('core', 'loading-dark.gif') + '"/> ' + message);
$('p[id="message"]').removeClass('hidden').addClass('info');
}
}
diff --git a/core/css/styles.css b/core/css/styles.css
index 5c0aa1f..5b8b39f 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -283,6 +283,11 @@ input[type="submit"].enabled {
opacity: .6;
}
+#body-login p#message img {
+ vertical-align: middle;
+ padding: 5px;
+}
+
#body-login div.buttons { text-align:center; }
#body-login p.info {
width: 22em;
diff --git a/core/img/loading-dark-small.gif b/core/img/loading-dark-small.gif
deleted file mode 100644
index 87fe79b..0000000
Binary files a/core/img/loading-dark-small.gif and /dev/null differ
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list