summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-22 00:52:03 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-22 00:52:03 +0000
commit0220996178a6affcedc1fd74a5c71c14353fa370 (patch)
tree25bb980d9dfe67c962f2a08af32ed0774d072801 /misc
parentcc421475b7313b59b32ca7aa68c5a533f1ffcea8 (diff)
downloadbrdo-0220996178a6affcedc1fd74a5c71c14353fa370.tar.gz
brdo-0220996178a6affcedc1fd74a5c71c14353fa370.tar.bz2
- Patch #605344 by dww: documentation and code style fixes for update manager. This was ready before freeze.
Diffstat (limited to 'misc')
-rw-r--r--misc/authorize.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/authorize.js b/misc/authorize.js
index 13daca652..28788f3de 100644
--- a/misc/authorize.js
+++ b/misc/authorize.js
@@ -15,12 +15,12 @@ Drupal.behaviors.authorizeFileTransferForm = {
});
$('.filetransfer').hide().filter('.filetransfer-' + $('#edit-connection-settings-authorize-filetransfer-default').val()).show();
- // Removes the float on the select box (used for non-JS interface)
- if($('.connection-settings-update-filetransfer-default-wrapper').length > 0) {
+ // Removes the float on the select box (used for non-JS interface).
+ if ($('.connection-settings-update-filetransfer-default-wrapper').length > 0) {
console.log($('.connection-settings-update-filetransfer-default-wrapper'));
$('.connection-settings-update-filetransfer-default-wrapper').css('float', 'none');
}
- // Hides the submit button for non-js users
+ // Hides the submit button for non-js users.
$('#edit-submit-connection').hide();
$('#edit-submit-process').show();
}