diff options
author | marijus <mario@mariovavti.com> | 2014-11-08 21:55:44 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-11-08 21:55:44 +0100 |
commit | 862f0ff29addc5a764f5544ad64ac5453e818801 (patch) | |
tree | 7af52960ee5245fbcb4d069014e28c9ce6a00e90 /view/js/acl.js | |
parent | ec4e4b82e958e7ba5a4efc8c370917c3e10bcba0 (diff) | |
download | volse-hubzilla-862f0ff29addc5a764f5544ad64ac5453e818801.tar.gz volse-hubzilla-862f0ff29addc5a764f5544ad64ac5453e818801.tar.bz2 volse-hubzilla-862f0ff29addc5a764f5544ad64ac5453e818801.zip |
prevent posting before acl got populated since this will disregard the default acl setting and the post will be visible to the default audience without warning. the chance that this happens is quite small while writing a post but can easily happen on eg editing photos (maybe just tick a checkbox and press submit). the acl and submit buttons are disabled by default and will be activated as soon as acl is populated.
Diffstat (limited to 'view/js/acl.js')
-rw-r--r-- | view/js/acl.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/view/js/acl.js b/view/js/acl.js index c129634a0..ec5e59962 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -269,5 +269,6 @@ ACL.prototype.populate = function(data){ $(el).removeAttr("data-src"); }); that.update_view(); + $('#dbtn-submit, #dbtn-acl').prop('disabled', false); } |