Browse Source

Auto-focus password input when sharing album

Tobias Reich 10 years ago
parent
commit
f9d753395a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/scripts/album.js

+ 1 - 1
src/scripts/album.js

@@ -423,7 +423,7 @@ album.setPublic = function(albumID, e) {
 
 		$('.basicModal .choice input[name="password"]').on('change', function() {
 
-			if ($(this).prop('checked')===true)	$('.basicModal .choice input[data-name="password"]').show();
+			if ($(this).prop('checked')===true)	$('.basicModal .choice input[data-name="password"]').show().focus();
 			else								$('.basicModal .choice input[data-name="password"]').hide();
 
 		});