Posted by Marco
2014-03-07

Hi Tom!

Is it possible to modify the script in order to not show results? TY!
Posted by Tom
2014-03-08

Hi Marco,

OK, I'll explain how to hide the poll result. Open web/js/ajax_poll.js and find the following lines:
	displayStats : function()
{

Insert "$(this.domobj).hide();" below the code. The result should look like:

	displayStats : function()
{
$(this.domobj).hide();