Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-23501] iOS: Allow property to be fetched without getter #8255

Merged
merged 1 commit into from Aug 24, 2016

Conversation

AngelkPetkov
Copy link
Contributor

@AngelkPetkov AngelkPetkov commented Aug 24, 2016

@hansemannn
Copy link
Collaborator

hansemannn commented Aug 24, 2016

LGTM! Just want to ensure that @cheekiatng's test succeeds now:

var win = Ti.UI.createWindow({
    backgroundColor: 'gray'
});

var label = Ti.UI.createLabel({
    text: 'this is some text'
});

// This is Android-only
if (Ti.Platform.osname == "android") {
    Ti.API.info('wordwrap: ' + label.wordWrap);
}

// This is cross-platform
Ti.API.info('ellipsize: ' + label.ellipsize);
Ti.API.info("Default value correct? " + label.ellipsize == Ti.UI.TEXT_ELLIPSIZE_TRUNCATE_END);

win.add(label);
win.open();

Can you verify that? Thank you!

@hansemannn
Copy link
Collaborator

Approved!

@hansemannn hansemannn merged commit 13331cd into tidev:master Aug 24, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants