Add double quotes #2

This commit is contained in:
catalinmiron 2015-06-30 23:35:47 +03:00
parent 383b5e3bd2
commit 81c310c500
1 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
'use strict';
"use strict";
var React = require('react-native');
var React = require("react-native");
var {
Image,
PixelRatio,
@ -10,8 +10,8 @@ var {
View
} = React;
var getImage = require('./helpers/getImage'),
screen = require('Dimensions').get('window');
var getImage = require("./helpers/getImage"),
screen = require("Dimensions").get("window");
var ShotCell = React.createClass({
render: function() {
@ -38,16 +38,16 @@ var styles = StyleSheet.create({
flex: 1,
},
row: {
backgroundColor: 'white',
flexDirection: 'column'
backgroundColor: "white",
flexDirection: "column"
},
cellImage: {
backgroundColor: 'transparent',
height: 300,
width: screen.width
width: screen.width,
backgroundColor: "transparent"
},
cellBorder: {
backgroundColor: 'rgba(0, 0, 0, 0.2)',
backgroundColor: "rgba(0, 0, 0, 0.2)",
// Trick to get the thinest line the device can display
height: 1 / PixelRatio.get(),
marginLeft: 4,