From 08147380c71444950ab2b08c49a49c018dccbb18 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Mon, 6 Oct 2014 14:09:23 -0700 Subject: [PATCH] Fix property names used for text overlay colors --- examples/overlaysExample.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/overlaysExample.js b/examples/overlaysExample.js index 2161b1c903..fef502c761 100644 --- a/examples/overlaysExample.js +++ b/examples/overlaysExample.js @@ -64,8 +64,8 @@ var text = Overlays.addOverlay("text", { y: 100, width: 150, height: 50, - color: { red: 0, green: 0, blue: 0}, - textColor: { red: 255, green: 0, blue: 0}, + backgroundColor: { red: 255, green: 255, blue: 255}, + color: { red: 255, green: 0, blue: 0}, topMargin: 4, leftMargin: 4, text: "Here is some text.\nAnd a second line."