mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
more TelerikNEXT improvements
This commit is contained in:
@ -67,11 +67,11 @@
|
||||
|
||||
<Label text="{{ title }}" textWrap="true" cssClass="title" />
|
||||
|
||||
<Label text="{{ room ? 'Room: ' + room : '' }}">
|
||||
<Label style.visibility="{{ room ? 'visible' : 'collapsed' }}">
|
||||
<Label.formattedText>
|
||||
<FormattedString fontSize="12" foregroundColor="#a17201">
|
||||
<FormattedString.spans>
|
||||
<Span text="{{ room ? 'Room: ' : '' }}" />
|
||||
<Span text="Room: " />
|
||||
<Span text="{{ room }}" fontAttributes="Bold" />
|
||||
</FormattedString.spans>
|
||||
</FormattedString>
|
||||
|
@ -62,7 +62,7 @@ export function getComponentModule(elementName: string, namespace: string, attri
|
||||
// Create instance of the component.
|
||||
instance = new instanceType();
|
||||
} catch (ex) {
|
||||
throw new Error("Cannot create module " + moduleId + ". " + ex);
|
||||
//throw new Error("Cannot create module " + moduleId + ". " + ex);
|
||||
}
|
||||
|
||||
if (instance && instanceModule) {
|
||||
|
Reference in New Issue
Block a user