mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
Frobit setting inline style from code
This commit is contained in:
@ -174,8 +174,8 @@ export function setPropertyValue(instance: view.View, instanceModule: Object, ex
|
||||
} else {
|
||||
var attrHandled = false;
|
||||
|
||||
if ((<any>instance).applyXmlAttribute) {
|
||||
attrHandled = (<any>instance).applyXmlAttribute(propertyName, propertyValue);
|
||||
if ((<any>instance)._applyXmlAttribute) {
|
||||
attrHandled = (<any>instance)._applyXmlAttribute(propertyName, propertyValue);
|
||||
}
|
||||
|
||||
if (!attrHandled) {
|
||||
|
Reference in New Issue
Block a user