Fix for Issue 1130: updateEvent backgroundColor bug
This commit is contained in:
parent
f078b47b86
commit
6ae1be4ca1
|
@ -33,7 +33,7 @@ version 1.5 (3/19/11)
|
||||||
an `events` property (function or array) with additional properties that will
|
an `events` property (function or array) with additional properties that will
|
||||||
be applied to the entire event source:
|
be applied to the entire event source:
|
||||||
- color (changes both background and border)
|
- color (changes both background and border)
|
||||||
- backgroudColor
|
- backgroundColor
|
||||||
- borderColor
|
- borderColor
|
||||||
- textColor
|
- textColor
|
||||||
- className
|
- className
|
||||||
|
|
|
@ -237,7 +237,7 @@ function EventManager(options, _sources) {
|
||||||
e.className = event.className;
|
e.className = event.className;
|
||||||
e.editable = event.editable;
|
e.editable = event.editable;
|
||||||
e.color = event.color;
|
e.color = event.color;
|
||||||
e.backgroudColor = event.backgroudColor;
|
e.backgroundColor = event.backgroundColor;
|
||||||
e.borderColor = event.borderColor;
|
e.borderColor = event.borderColor;
|
||||||
e.textColor = event.textColor;
|
e.textColor = event.textColor;
|
||||||
normalizeEvent(e);
|
normalizeEvent(e);
|
||||||
|
|
Loading…
Reference in a new issue