Skip to content

Commit

Permalink
ACE-4157 Switch tracker image from 5.1 to 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
slanglois committed Nov 15, 2016
1 parent aaae817 commit e3a0513
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ protected String generateMessages(WebScriptRequest req, WebScriptResponse res, S
final int schemaIndex = serverPath.indexOf(':');
writer.write("window.setTimeout(function(){(document.getElementById('alfresco-yuiloader')||document.createElement('div')).innerHTML = '<img src=\"");
writer.write(serverPath.substring(0, schemaIndex));
writer.write("://www.alfresco.com/assets/images/logos/community-5.1-share.png\" alt=\"*\" style=\"display:none\"/>\'}, 100);\r\n");
writer.write("://www.alfresco.com/assets/images/logos/community-5.2-share.png\" alt=\"*\" style=\"display:none\"/>\'}, 100);\r\n");
}
return writer.toString();
}
Expand All @@ -122,7 +122,7 @@ protected String getMessagesSuffix(WebScriptRequest req, WebScriptResponse res,
final int schemaIndex = serverPath.indexOf(':');
sb.append("window.setTimeout(function(){(document.getElementById('alfresco-yuiloader')||document.createElement('div')).innerHTML = '<img src=\"");
sb.append(serverPath.substring(0, schemaIndex));
sb.append("://www.alfresco.com/assets/images/logos/community-5.1-share.png\" alt=\"*\" style=\"display:none\"/>\'}, 100);\r\n");
sb.append("://www.alfresco.com/assets/images/logos/community-5.2-share.png\" alt=\"*\" style=\"display:none\"/>\'}, 100);\r\n");
}
return sb.toString();
}
Expand Down

0 comments on commit e3a0513

Please sign in to comment.