aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/acl.js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-08-05 15:19:17 +0200
committerMario Vavti <mario@mariovavti.com>2016-08-05 15:19:17 +0200
commite67f5bc6bbb77d53867d7c03bda8410c59360dbe (patch)
tree8f12f84eee380e5e1cfe3003983eaa678a21561a /view/js/acl.js
parent316b090433b7e415fd3c8ac6230f2df0277cdf8c (diff)
downloadvolse-hubzilla-e67f5bc6bbb77d53867d7c03bda8410c59360dbe.tar.gz
volse-hubzilla-e67f5bc6bbb77d53867d7c03bda8410c59360dbe.tar.bz2
volse-hubzilla-e67f5bc6bbb77d53867d7c03bda8410c59360dbe.zip
Revert "remove some logging"
This reverts commit 316b090433b7e415fd3c8ac6230f2df0277cdf8c.
Diffstat (limited to 'view/js/acl.js')
-rw-r--r--view/js/acl.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/view/js/acl.js b/view/js/acl.js
index b36fa97a1..2ba7ea46a 100644
--- a/view/js/acl.js
+++ b/view/js/acl.js
@@ -65,8 +65,11 @@ function ACL(backend_url) {
ACL.prototype.get_form_data = function(event) {
form_id = $(this).data('form_id');
+
that.form_id = $('#' + form_id);
+ console.log(form_id);
+
that.allow_cid = (that.form_id.data('allow_cid') || []);
that.allow_gid = (that.form_id.data('allow_gid') || []);
that.deny_cid = (that.form_id.data('deny_cid') || []);
@@ -74,7 +77,6 @@ ACL.prototype.get_form_data = function(event) {
that.update_view();
that.on_submit();
-
}
// no longer called only on submit - call to update whenever a change occurs to the acl list.
@@ -266,10 +268,17 @@ ACL.prototype.update_select = function(set) {
ACL.prototype.update_view = function(value) {
if(that.form_id) {
+ console.log(that.form_id);
+
that.form_id.data('allow_cid', that.allow_cid);
that.form_id.data('allow_gid', that.allow_gid);
that.form_id.data('deny_cid', that.deny_cid);
that.form_id.data('deny_gid', that.deny_gid);
+
+ console.log(that.form_id.data('allow_cid'));
+ console.log(that.form_id.data('allow_gid'));
+ console.log(that.form_id.data('deny_cid'));
+ console.log(that.form_id.data('deny_gid'));
}
if (that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0) {