Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Posts that belong to a hidden community can only be shared through its link.

 

Estado
subtletrue
titleLearn more

HTML
<a id="toggleAll" href="#" >Expand/hide additional information. </a>
 <script type="text/javascript">
 
 var abertos = 0;
 var fechados = 0;
 function contador() {
    abertos = 0;
    fechados = 0;
    jQuery(".expand-control").each( function() {
		if (document.getElementById(this.id).children[0].className != "expand-control-icon icon expanded") {
           	fechados++;
        } else {
        	abertos++;
        }
    });
 }
 AJS.toInit(function() {
 
    contador();
	var soma = abertos + fechados;
	$("#toggleAll").html('Expand/hide ' + soma  + ' additional information.');

    AJS.$('#toggleAll').click(function() {
        contador();
        if (abertos >= fechados) {
            jQuery(".expand-control").each(
                function() {
                    if (document.getElementById(this.id).children[0].className == "expand-control-icon icon expanded") {
                        jQuery(this).trigger("click");
                    }
                }
            )
        } else {
            jQuery(".expand-control").each(
                function() {
                    if (document.getElementById(this.id).children[0].className != "expand-control-icon icon expanded") {
                        jQuery(this).trigger("click");
                    }
                }
            )
        }
    });
});
 </script>

Basic Path


01. Trigger the sharing icon, located on the actions of the publication that you want to share.

Expandirpanel
titleLearn more

When the post belongs to a community, it requires permission to share it, which is defined by the administrator of the company or the community itself.

02. Press Share.

Expandirpanel
titleLearn more

This option is not displayed when the content being shared belongs to a hidden community. In this case you can only share the content from your link, as described in the alternate path Get Link of your publication. 

03. Enter the users and/or communities with which we want to share the publication.

Expandirinfo
titleLearn more

When you start to type the name of the user or of the community, suggestions that match the information typed are presented.

An alert is sent if the user or the community entered does not have access to the information to be shared.

04. Enter a message to go with the sharing, if desired.

Learn more
Expandir
title
Painel

The message that will accompany the shared content can contain up to 700 characters. 

05. Press Share; or Discard to withdraw from action, if desired.

...