Hi to all!
First of all -> Thank you for this great module.
I had a problem on rendering the results. Progressbars had always a width of 100%, because they do not take "," in Chrome. I managed to fix it by declaring round($var, 0) on line 231 of the module!
foreach($answers as $answer) {
$answer->vote_percent = isset($data[$answer->id]) ? round((100/$total) * $data[$answer->id]['vote_count'], 0) : 0; //change
$answer->vote_count = isset($data[$answer->id]) ? $data[$answer->id]['vote_count'] : 0;
$data[$answer->id]['vote_text'] = $answer->title;
$data[$answer->id]['vote_count'] = $answer->vote_count;
$data[$answer->id]['vote_percent'] = round($answer->vote_percent);
}
Just in case sombody has this issue too. Now it works perfektly!