diff --git a/www/faces.php b/www/faces.php
index 04c6329..db73013 100644
--- a/www/faces.php
+++ b/www/faces.php
@@ -99,7 +99,7 @@ echo "
";
echo "
getFeatureImgAsString("brows")}\" title=\"{$currentHit->getId()}\">";
echo "
";
foreach(EmotionHero\Models\Emotions::$EMOTIONS as $emotion) {
- echo "- $emotion
- " . sprintf("$.2f", $currentHit->getEmotions()->getEmotionScore($emotion)) . "
";
+ echo "- $emotion
- " . sprintf("%.2f %%", $currentHit->getEmotions()->getEmotionScore($emotion)) . "
";
}
echo "
";
echo "
";
@@ -163,6 +163,8 @@ echo <<< EOSVG
EOSVG;
+
+print_r($currentHit->getPoints()->getAsArray());
?>