11import React from '../../react-native' ;
22/*import ReactDOM from 'react-dom';*/
33import StylePropable from './mixins/style-propable' ;
4- import AutoPrefix from './styles/auto-prefix' ;
4+ /* import AutoPrefix from './styles/auto-prefix';*/
55import Transitions from './styles/transitions' ;
66import Paper from './paper' ;
77import DefaultRawTheme from './styles/raw-themes/light-raw-theme' ;
@@ -218,9 +218,9 @@ const RefreshIndicator = React.createClass({
218218 transitionDuration = '850ms' ;
219219 }
220220
221- AutoPrefix . set ( path . style , 'strokeDasharray' , strokeDasharray ) ;
222- AutoPrefix . set ( path . style , 'strokeDashoffset' , strokeDashoffset ) ;
223- AutoPrefix . set ( path . style , 'transitionDuration' , transitionDuration ) ;
221+ /* AutoPrefix.set(path.style, 'strokeDasharray', strokeDasharray);*/
222+ /* AutoPrefix.set(path.style, 'strokeDashoffset', strokeDashoffset);*/
223+ /* AutoPrefix.set(path.style, 'transitionDuration', transitionDuration);*/
224224 } ,
225225
226226 _rotateWrapper ( wrapper ) {
@@ -229,21 +229,21 @@ const RefreshIndicator = React.createClass({
229229 clearTimeout ( this . _timer2 ) ;
230230 this . _timer2 = setTimeout ( this . _rotateWrapper . bind ( this , wrapper ) , 10050 ) ;
231231
232- AutoPrefix . set ( wrapper . style , 'transform' , null ) ;
233- AutoPrefix . set ( wrapper . style , 'transform' , 'rotate(0deg)' ) ;
234- AutoPrefix . set ( wrapper . style , 'transitionDuration' , '0ms' ) ;
232+ /* AutoPrefix.set(wrapper.style, 'transform', null);*/
233+ /* AutoPrefix.set(wrapper.style, 'transform', 'rotate(0deg)');*/
234+ /* AutoPrefix.set(wrapper.style, 'transitionDuration', '0ms');*/
235235
236236 setTimeout ( ( ) => {
237237 if ( this . isMounted ( ) ) {
238- AutoPrefix . set ( wrapper . style , 'transform' , 'rotate(1800deg)' ) ;
239- AutoPrefix . set ( wrapper . style , 'transitionDuration' , '10s' ) ;
240- AutoPrefix . set ( wrapper . style , 'transitionTimingFunction' , 'linear' ) ;
238+ /* AutoPrefix.set(wrapper.style, 'transform', 'rotate(1800deg)');*/
239+ /* AutoPrefix.set(wrapper.style, 'transitionDuration', '10s');*/
240+ /* AutoPrefix.set(wrapper.style, 'transitionTimingFunction', 'linear');*/
241241 }
242242 } , 50 ) ;
243243 } ,
244244
245245 prefixed ( key ) {
246- return AutoPrefix . single ( key ) ;
246+ /* return AutoPrefix.single(key);*/
247247 } ,
248248
249249} ) ;
0 commit comments