[TIMOB-23357] Windows: blur is not supported on Windows warning.
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2016-05-12T14:45:56.000+0000 |
Affected Version/s | Release 5.3.0 |
Fix Version/s | Release 5.4.0 |
Components | Windows |
Labels | qe-5.3.0, qe-5.4.0 |
Reporter | Josh Longton |
Assignee | Kota Iguchi |
Created | 2016-05-10T20:41:17.000+0000 |
Updated | 2016-06-15T21:45:00.000+0000 |
Description
*app.js*
// create tab group
var tabGroup = Titanium.UI.createTabGroup();
//
// create base UI tab and root window
//
var win1 = Titanium.UI.createWindow({
title: 'Tab 1',
backgroundColor: '#fff'
});
var tab1 = Titanium.UI.createTab({
icon: 'KS_nav_views.png',
title: 'Tab 1',
window: win1
});
var label1 = Titanium.UI.createLabel({
color: '#999',
text: 'I am Window 1',
font: { fontSize: 20, fontFamily: 'Helvetica Neue' },
textAlign: 'center',
width: 'auto'
});
win1.add(label1);
//
// create controls tab and root window
//
var win2 = Titanium.UI.createWindow({
title: 'Tab 2',
backgroundColor: '#fff'
});
var tab2 = Titanium.UI.createTab({
icon: 'KS_nav_ui.png',
title: 'Tab 2',
window: win2
});
var label2 = Titanium.UI.createLabel({
color: '#999',
text: 'I am Window 2',
font: { fontSize: 20, fontFamily: 'Helvetica Neue' },
textAlign: 'center',
width: 'auto'
});
win2.add(label2);
//
// add tabs
//
tabGroup.addTab(tab1);
tabGroup.addTab(tab2);
// open tab group
tabGroup.open();
*Steps to reproduce:*
Create a new project with the ENV and app.js above
Run the application
Switch between the tabs
*Actual :* A warning is shown
[WARN] : blur() is not supported on Windows
*Expected:*
No warning is shown.
https://github.com/appcelerator/titanium_mobile_windows/pull/682
Verified as fixed, blur() warning is no longer shown in the console when switching between tabs. Tested on: Windows 10 Pro Windows Phone 10.0 (Microsoft Lumia 640 LTE) Appc Studio: 4.6.0.201605201934 Ti SDK: 5.4.0.v20160608165242 Appc NPM: 4.2.7-2 Appc Core: 5.4.0-15 Node: v4.4.5 *Closing Ticket.*