// viewModel Test Data
var viewModelTestData = {
app_name: new ko.observable(""), // Must have value else won't persist in ko.toJSON().
common_items: {
background_image_values: new ko.observableArray(["Wash 1", "Wash 2"]),
background_image: new ko.observable(),
style_sheet_values: new ko.observableArray(["Image 1", "Button 2"]),
style_sheet: new ko.observable(),
text_images: new ko.observableArray([
new common_text_image_item( 'Acute', 'Lovely leaf' )
]),
buttons: new ko.observableArray([
new common_button_item( "Botanical Terms", "bot_terms" ),
new common_button_item( "Leaf Apices" )
])
},
pages: {
sections: new ko.observableArray([
])
}
};
Neville