[TIMOB-5568] MobileWeb: Property title does not work in window
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2011-06-08T07:48:37.000+0000 |
Affected Version/s | n/a |
Fix Version/s | Sprint 2011-41 |
Components | MobileWeb |
Labels | n/a |
Reporter | Misha Vasko |
Assignee | Andrew Kulinich |
Created | 2011-05-25T03:30:22.000+0000 |
Updated | 2017-03-03T23:31:52.000+0000 |
Description
The title property of the window is not represented in browser Chrome(Desktop) and Safari(iOs).
win = Ti.UI.currentWindow;
var b1 = Ti.UI.createButton({
title: 'title ch1'
});
var b2 = Ti.UI.createButton({
title: 'title ch2'
});
win.add(b1);
win.add(b2);
b1.addEventListener('click', function(){
win.title = 'It is the TITLE';
});
b2.addEventListener('click', function(){
win.title = 'It is the SUPERTITLE';
});
Closing ticket as MobileWeb is no longer supported.