diff options
author | tuscanhobbit <tuscanhobbit@users.noreply.github.com> | 2014-09-22 22:44:10 +0200 |
---|---|---|
committer | tuscanhobbit <tuscanhobbit@users.noreply.github.com> | 2014-09-22 22:44:10 +0200 |
commit | 6a9e8fcd20c0101d448061fdbf51034ab456d2c3 (patch) | |
tree | 08e4a6d051636b90a98a6889a0b677a7d7049982 /view/js/mod_connedit.js | |
parent | ed7f3001c1c1deec5076ae12114e5c42865b6251 (diff) | |
parent | 2070dbfdeace4a902208e9dfb50d950647142e99 (diff) | |
download | volse-hubzilla-6a9e8fcd20c0101d448061fdbf51034ab456d2c3.tar.gz volse-hubzilla-6a9e8fcd20c0101d448061fdbf51034ab456d2c3.tar.bz2 volse-hubzilla-6a9e8fcd20c0101d448061fdbf51034ab456d2c3.zip |
Merge from upstream
Diffstat (limited to 'view/js/mod_connedit.js')
-rw-r--r-- | view/js/mod_connedit.js | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/view/js/mod_connedit.js b/view/js/mod_connedit.js index 6231dbd0c..fabf24e95 100644 --- a/view/js/mod_connedit.js +++ b/view/js/mod_connedit.js @@ -6,11 +6,18 @@ function abook_perms_msg() { } $(document).ready(function() { - if(typeof(after_following) !== 'undefined' && after_following) - connectFullShare(); + if(typeof(after_following) !== 'undefined' && after_following) { + if(typeof(connectDefaultShare) !== 'undefined') + connectDefaultShare(); + else + connectFullShare(); + } $('#id_pending').click(function() { - connectFullShare(); + if(typeof(connectDefaultShare) !== 'undefined') + connectDefaultShare(); + else + connectFullShare(); }); $('.abook-edit-me').click(function() { |