-
Notifications
You must be signed in to change notification settings - Fork 0
Style Parser
Malexion edited this page Nov 6, 2016
·
2 revisions
-
[options][Optional] Options param,{...}key - value groups for style properties.
var style = new __.lib.StyleParser({ height: '100px' });
style.update({
height: '200px',
width: '50px',
'font-style': 'bold',
'overflow-y': 'auto'
});
style['width'] = '50%';
style.remove('font-style');
style.update('overflow-y: scroll;');
console.log(style.asString);
console.log(style.asObject);
style.clear();
console.log(style.asString);