Cómo mostrar la encuesta de cliente
Puede obtener más información sobre este artículo para mostrar la encuesta del cliente.
Archivo a editar: IdiagesForChatOnlyModejs
var ic_hic_demo_timer = null;
ic_hic_demo_timer = setInterval(ic_hic_demo_timer_checkobject, 100);
function ic_hic_demo_timer_checkobject()
{
if ((ICObject != null) && (ICObject.pMainContentArea != null))
{
clearInterval(ic_hic_demo_timer);
ICObject.SurveyButton = document.createElement("div");
ICObject.SurveyButton.className = "demoButton";
ICObject.SurveyButton.onclick = function () { ICObject.displayCustomerSurvey(); }
ICObject.SurveyButton.innerHTML = "Display<br />Customer<br />Survey";
ICObject.pMainContentArea.appendChild(ICObject.SurveyButton);
}
}
Archivo a editar: InstantChat.css
.demoButton
{
position: absolute;
left: 94px;
top: 32px;
width: 50px;
height: 43px;
text-align: center;
cursor: pointer;
background-color: red;
z-index: 2000;
}