put timeout code in place but don't turn it on.

This commit is contained in:
friendica 2014-11-13 15:34:35 -08:00
parent 25d69a9068
commit b5da015789
2 changed files with 16 additions and 13 deletions

View File

@ -421,7 +421,8 @@ function zot_refresh($them,$channel = null, $force = false) {
// if they are in your address book but you aren't in theirs, and/or this does not // if they are in your address book but you aren't in theirs, and/or this does not
// match your current connected state setting, toggle it. // match your current connected state setting, toggle it.
// FIXME: uncoverted to postgres
// FIXME: when this was enabled, all contacts became unconnected. Currently disabled intentionally
// $y1 = q("update abook set abook_flags = (abook_flags ^ %d) // $y1 = q("update abook set abook_flags = (abook_flags ^ %d)
// where abook_xchan = '%s' and abook_channel = %d // where abook_xchan = '%s' and abook_channel = %d
// and not (abook_flags & %d) limit 1", // and not (abook_flags & %d) limit 1",

View File

@ -25,6 +25,7 @@ function ACL(backend_url, preset){
/*events*/ /*events*/
$(document).ready(function() { $(document).ready(function() {
// setTimeout( function() {
that.showall.click(that.on_showall); that.showall.click(that.on_showall);
$(document).on('click','.acl-button-show',that.on_button_show); $(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);
@ -33,6 +34,7 @@ function ACL(backend_url, preset){
/* startup! */ /* startup! */
that.get(0,100); that.get(0,100);
that.on_submit(); that.on_submit();
// }, 5000 );
}); });
} }