David 9 anos atrás
pai
commit
f229a9293d
1 arquivos alterados com 10 adições e 4 exclusões
  1. 10 4
      src/components/Clase.js

+ 10 - 4
src/components/Clase.js

@@ -24,10 +24,16 @@ class Clase extends Component  {
           <Text>{clase.profesor.nombre} {clase.profesor.apellido}</Text>
         </CardSection>
         <CardSection>
-          <WebView
-            style={{height:300}}
-            scalesPageToFit={true}
-            source={{html: clase.texto}} />
+            <WebView
+              style={{height:300}}
+              scalesPageToFit={true}
+              javaScriptEnabled={false}
+              source={{html: clase.texto}} />
+        </CardSection>
+        <CardSection>
+          <Text>
+            Comentarios
+          </Text>
         </CardSection>
       </Card>
 		);