From bed0a5773fe2300979969b46ef633f28ab84bf43 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 5 Aug 2016 13:20:03 +0200 Subject: multi acl: port /rpost --- view/js/acl.js | 6 ++---- view/js/mod_cloud.js | 14 +++++++------- view/tpl/chatrooms.tpl | 2 +- view/tpl/jot.tpl | 2 +- view/tpl/webpagelist.tpl | 2 +- view/tpl/wiki.tpl | 2 +- 6 files changed, 13 insertions(+), 15 deletions(-) (limited to 'view') diff --git a/view/js/acl.js b/view/js/acl.js index 9b08571ae..9b9f0eba3 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -53,8 +53,6 @@ function ACL(backend_url) { $(document).on('click','.acl-button-show',that.on_button_show); $(document).on('click','.acl-button-hide',that.on_button_hide); - $(document).on('click','.acl-button-hide',that.on_button_hide); - $("#acl-search").keypress(that.on_search); /* startup! */ @@ -64,7 +62,7 @@ function ACL(backend_url) { } -ACL.prototype.get_form_data = function(event) { +ACL.prototype.get_form_data = function(event, form_id) { form_id = $(this).data('form_id'); @@ -401,5 +399,5 @@ ACL.prototype.populate = function(data) { $(el).attr('src', $(el).data("src")); $(el).removeAttr("data-src"); }); - that.update_view(); + //that.update_view(); }; diff --git a/view/js/mod_cloud.js b/view/js/mod_cloud.js index e56ec2a81..5b3c78bed 100644 --- a/view/js/mod_cloud.js +++ b/view/js/mod_cloud.js @@ -100,13 +100,13 @@ function prepareHtml(f, i) { } function formatSizeUnits(bytes){ - if (bytes>=1000000000) {bytes=(bytes/1000000000).toFixed(2)+' GB';} - else if (bytes>=1000000) {bytes=(bytes/1000000).toFixed(2)+' MB';} - else if (bytes>=1000) {bytes=(bytes/1000).toFixed(2)+' KB';} - else if (bytes>1) {bytes=bytes+' bytes';} - else if (bytes==1) {bytes=bytes+' byte';} - else {bytes='0 byte';} - return bytes; + if (bytes>=1000000000) {bytes=(bytes/1000000000).toFixed(2)+' GB';} + else if (bytes>=1000000) {bytes=(bytes/1000000).toFixed(2)+' MB';} + else if (bytes>=1000) {bytes=(bytes/1000).toFixed(2)+' KB';} + else if (bytes>1) {bytes=bytes+' bytes';} + else if (bytes==1) {bytes=bytes+' byte';} + else {bytes='0 byte';} + return bytes; } // this is basically a js port of include/text.php getIconFromType() function diff --git a/view/tpl/chatrooms.tpl b/view/tpl/chatrooms.tpl index 04ebbcae4..64f6e8d0f 100644 --- a/view/tpl/chatrooms.tpl +++ b/view/tpl/chatrooms.tpl @@ -1,7 +1,7 @@
{{if $is_owner}} - + {{/if}}

{{$header}}

diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 661954623..a91c81ea9 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -165,7 +165,7 @@ {{/if}} {{if $showacl}} - {{/if}} diff --git a/view/tpl/webpagelist.tpl b/view/tpl/webpagelist.tpl index 524460408..4dec7518f 100644 --- a/view/tpl/webpagelist.tpl +++ b/view/tpl/webpagelist.tpl @@ -2,7 +2,7 @@
{{if $editor}}
- +
{{/if}}

{{$listtitle}}

diff --git a/view/tpl/wiki.tpl b/view/tpl/wiki.tpl index c346bed60..c05b33a61 100644 --- a/view/tpl/wiki.tpl +++ b/view/tpl/wiki.tpl @@ -15,7 +15,7 @@
{{if $showNewWikiButton}} - + {{/if}} {{if $showNewPageButton}} -- cgit v1.2.3