-
11 Jan 2012 10:41 AM #1
Chrome 18 issue
Chrome 18 issue
No examples in 2.0 pr3 work, neither does my code obviously.
I am on dev channel, and it just updated to 18 today.
Interestingly, I do see DOM generated, you just can't see anything. And if I take out all mentions of css, it does render but without any styles - so it looks like CSS problem.
-
11 Jan 2012 11:15 AM #2Sencha - Sencha Touch Dev Team
- Join Date
- Mar 2007
- Location
- Redwood City, California
- Posts
- 3,652
- Vote Rating
- 14
Ouch, we'll take a look into it.
-
11 Jan 2012 11:38 AM #3Sencha - Sencha Touch Dev Team
- Join Date
- Mar 2007
- Location
- Redwood City, California
- Posts
- 3,652
- Vote Rating
- 14
In the setLengthValue method of Ext.dom.Element you need to change the following:
this.dom.style[name] = value + ' !important';
to
this.dom.style.setProperty(name, value, '!important');
We will have this fixed in the next release.
Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-1375
in
2.0.


Reply With Quote