[Timeline] Add default values to model

Add default values to model, such that editing which occurs
before user supplies these properties does not cause errors
to occur. Directly addresses #717, indirectly addresses
remaining errant behavior associated with #790.
This commit is contained in:
Victor Woeltjen 2016-03-31 15:46:56 -07:00
parent cbea842c8b
commit 06c6832676

View File

@ -172,7 +172,10 @@ define([
}
],
"model": {
"composition": []
"composition": [],
"start": {
"timestamp": 0
}
}
},
{
@ -211,6 +214,12 @@ define([
"composition": [],
"relationships": {
"modes": []
},
"start": {
"timestamp": 0
},
"duration": {
"timestamp": 0
}
}
},