|
Change by David F. Huynh - 24/Sep/07 01:46 PM
|
| Field |
Original Value |
New Value |
|
Comment
|
[ I will try to fix it in version 2.0. For the time being, please try to add this script after you include timeline-api.js:
<script>
Timeline.DefaultEventSource.Event.prototype.fillTime: function(elmt, labeller) {
if (this._instant) {
if (this.isImprecise()) {
elmt.appendChild(elmt.ownerDocument.createTextNode(this.getProperty("start")));
elmt.appendChild(elmt.ownerDocument.createElement("br"));
elmt.appendChild(elmt.ownerDocument.createTextNode(this.getProperty("end")));
} else {
elmt.appendChild(elmt.ownerDocument.createTextNode(this.getProperty("start")));
}
} else {
if (this.isImprecise()) {
elmt.appendChild(elmt.ownerDocument.createTextNode(
this.getProperty("start") + " ~ " + this.getProperty("latestStart")));
elmt.appendChild(elmt.ownerDocument.createElement("br"));
elmt.appendChild(elmt.ownerDocument.createTextNode(
this.getProperty("earliestEnd") + " ~ " + this.getProperty("end")));
} else {
elmt.appendChild(elmt.ownerDocument.createTextNode(this.getProperty("start")));
elmt.appendChild(elmt.ownerDocument.createElement("br"));
elmt.appendChild(elmt.ownerDocument.createTextNode(this.getProperty("end")));
}
}
};
</script>
Let me know if that helps.
]
|
|