73424c1791
- Add new Emesary notification type for NAV/COM data - Create Update/Publish interfaces using Emesary from properties - Use interfaces to drive updates to EIS and NAV/COM frequencies - Change the PageGroupController to a "proper" MFD page
28 lines
441 B
Text
28 lines
441 B
Text
# Surround Styles
|
|
var SurroundStyles =
|
|
{
|
|
new : func() {
|
|
var obj = { parents : [ SurroundStyles ]};
|
|
obj.Styles = {};
|
|
obj.loadStyles();
|
|
return obj;
|
|
},
|
|
|
|
getStyle : func(type) {
|
|
return me.Styles[type];
|
|
},
|
|
|
|
setStyle : func(type, name, value) {
|
|
me.Styles[type][name] = value;
|
|
},
|
|
|
|
loadStyles : func() {
|
|
me. clearStyles();
|
|
me.Styles.XXX = {};
|
|
},
|
|
|
|
clearStyles : func() {
|
|
me.Styles = {};
|
|
},
|
|
|
|
};
|