David преди 9 години
родител
ревизия
f229a9293d
променени са 1 файла, в които са добавени 10 реда и са изтрити 4 реда
  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>
 		);