FLUID-5063: Simplify UIO model by removing "selections" layer

Metadata

Source
FLUID-5063
Type
Improvement
Priority
Major
Status
Closed
Resolution
Fixed
Assignee
N/A
Reporter
Cindy Li
Created
2013-06-20T14:06:53.165-0400
Updated
2013-08-15T07:44:21.966-0400
Versions
N/A
Fixed Versions
N/A
Component
  1. UI Options

Description

The current UIOptions component has a model structure as:

model: {
selections: {
textSize: 1,
toc: false,
...
}
}

It can be simplified by having the model contain the settings directly without "selections" layer:

model: {
textSize: 1,
toc: false,
...
}

Comments

  • Justin Obara commented 2013-07-18T15:29:05.386-0400

    Will be resolved with work for FLUID-4907

  • Justin Obara commented 2013-08-15T07:44:16.234-0400

    Addressed with work for FLUID-4907