From a4a1dad8312db8060009be0dd315cd7b5b1e4fc5 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Sun, 28 Oct 2012 13:47:29 +0100 Subject: set password if user leaves password field (issue #57) --- core/js/share.js | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 7d8799edf51..8d359dd3fcb 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -483,15 +483,13 @@ $(document).ready(function() { $('#linkPass').toggle('blind'); }); - $('#linkPassText').live('keyup', function(event) { - if (event.keyCode == 13) { - var itemType = $('#dropdown').data('item-type'); - var itemSource = $('#dropdown').data('item-source'); - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.PERMISSION_READ, function() { - $('#linkPassText').val(''); - $('#linkPassText').attr('placeholder', t('core', 'Password protected')); - }); - } + $('#linkPassText').live('focusout', function(event) { + var itemType = $('#dropdown').data('item-type'); + var itemSource = $('#dropdown').data('item-source'); + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.PERMISSION_READ, function() { + $('#linkPassText').val(''); + $('#linkPassText').attr('placeholder', t('core', 'Password protected')); + }); }); $('#expirationCheckbox').live('click', function() { -- cgit v1.2.3