how is it possible to display the internal comment tab before the share with customer tab ?

duprez August 10, 2016

This question is in reference to Atlassian Documentation: Getting started for service desk agents

Ask your question here...

1 answer

0 votes
joachimbollen
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 10, 2016

Hi,

For server, you could add this to the announcement banner:

<script type="text/javascript">
var commentTabsAreAlreadyShowing = false;
setInterval(function(){
  var tabs = jQuery(".sd-external-submit");
  var edit = jQuery(".sd-attach-dialog-footer-actions");
  if (tabs.size() > 0 && !commentTabsAreAlreadyShowing) {
    commentTabsAreAlreadyShowing = true;
    jQuery(".sd-internal-submit").parent("span").insertBefore(".sd-comment-buttons span:first");
    jQuery(".sd-internal-submit").addClass("aui-button-primary");
    jQuery(".sd-external-submit").removeClass("aui-button-primary");
  }
  else if (edit.size() > 0 && !commentTabsAreAlreadyShowing) {
    commentTabsAreAlreadyShowing = true;
    jQuery("#button-private").addClass("aui-button-primary");
    jQuery("#button-public").removeClass("aui-button-primary");
	jQuery("#button-private").insertBefore("#button-public");
  }  
  else if (tabs.size() == 0 && edit.size() == 0) {
    commentTabsAreAlreadyShowing = false;
  }
}, 100);
</script>

For cloud, this unfortunately doesn't work... sad

Suggest an answer

Log in or Sign up to answer