[Pkg-owncloud-commits] [owncloud] 146/223: fix camelCase and avoiud re-wrapping $()

David Prévot taffit at moszumanska.debian.org
Sun Jun 22 01:54:18 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 0a2c676cda48aee0a9e788cae5fafeee5bdf0dec
Author: Morris Jobke <hey at morrisjobke.de>
Date:   Mon Jun 16 11:35:48 2014 +0200

    fix camelCase and avoiud re-wrapping $()
---
 apps/files_external/js/settings.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js
index e5cb373..348fecf 100644
--- a/apps/files_external/js/settings.js
+++ b/apps/files_external/js/settings.js
@@ -312,7 +312,7 @@ $(document).ready(function() {
 			OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'yes');
 			$('input[name="allowUserMountingBackends\\[\\]"]').prop('checked', true);
 			$('#userMountingBackends').removeClass('hidden');
-			$($('input[name="allowUserMountingBackends\\[\\]"]')[0]).trigger('change');
+			$('input[name="allowUserMountingBackends\\[\\]"]').eq(0).trigger('change');
 		} else {
 			OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'no');
 			$('#userMountingBackends').addClass('hidden');
@@ -322,12 +322,12 @@ $(document).ready(function() {
 
 	$('input[name="allowUserMountingBackends\\[\\]"]').bind('change', function() {
 		OC.msg.startSaving('#userMountingMsg');
-		var user_mounting_backends = $('input[name="allowUserMountingBackends\\[\\]"]:checked').map(function(){return $(this).val();}).get();
-		OC.AppConfig.setValue('files_external', 'user_mounting_backends', user_mounting_backends.join());
+		var userMountingBackends = $('input[name="allowUserMountingBackends\\[\\]"]:checked').map(function(){return $(this).val();}).get();
+		OC.AppConfig.setValue('files_external', 'user_mounting_backends', userMountingBackends.join());
 		OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('settings', 'Saved')}});
 
 		// disable allowUserMounting
-		if(user_mounting_backends.length === 0) {
+		if(userMountingBackends.length === 0) {
 			$('#allowUserMounting').prop('checked', false);
 			$('#allowUserMounting').trigger('change');
 

-- 
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