diff options
author | friendica <info@friendica.com> | 2013-02-07 15:25:18 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-07 15:25:18 -0800 |
commit | 65de97b85ace2e472201663d08b38959b9d96c1c (patch) | |
tree | 58c91f32e99aa5a55cea185b83c734c507ce7d36 /view/js | |
parent | d66825c7343777c742252548694d993251259be3 (diff) | |
download | volse-hubzilla-65de97b85ace2e472201663d08b38959b9d96c1c.tar.gz volse-hubzilla-65de97b85ace2e472201663d08b38959b9d96c1c.tar.bz2 volse-hubzilla-65de97b85ace2e472201663d08b38959b9d96c1c.zip |
auto form submission didn't work - jquery inheritance issue, disabling until we find another way.
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/mod_connections.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/view/js/mod_connections.js b/view/js/mod_connections.js index 57001f0be..e5d6ad55b 100644 --- a/view/js/mod_connections.js +++ b/view/js/mod_connections.js @@ -34,7 +34,7 @@ function connectFullShare() { $('#me_id_perms_post_mail').attr('checked','checked'); $('#me_id_perms_chat').attr('checked','checked'); $('#me_id_perms_view_storage').attr('checked','checked'); - $('#abook-edit-form').submit(); + // $('#abook-edit-form').submit(); } function connectCautiousShare() { @@ -46,7 +46,7 @@ function connectCautiousShare() { $('#me_id_perms_send_stream').attr('checked','checked'); $('#me_id_perms_post_comments').attr('checked','checked'); $('#me_id_perms_post_mail').attr('checked','checked'); - $('#abook-edit-form').submit(); + // $('#abook-edit-form').submit(); } @@ -62,14 +62,14 @@ function connectForum() { $('#me_id_perms_post_comments').attr('checked','checked'); $('#me_id_perms_post_mail').attr('checked','checked'); $('#me_id_perms_tag_deliver').attr('checked','checked'); - $('#abook-edit-form').submit(); + // $('#abook-edit-form').submit(); } function connectFollowOnly() { $('#me_id_perms_send_stream').attr('checked','checked'); - $('#abook-edit-form').submit(); + // $('#abook-edit-form').submit(); } |