Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 13d6b36

Browse files
committed
double quotes
1 parent 46ed57e commit 13d6b36

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

Examples/CodePushDemoApp/CodePushDemoAppTests/DownloadProgressTests/DownloadProgressTest.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
'use strict';
1+
"use strict";
22

3-
var RCTTestModule = require('NativeModules').TestModule;
4-
var React = require('react-native');
5-
var CodePushSdk = require('react-native-code-push');
6-
var NativeBridge = require('react-native').NativeModules.CodePush;
3+
var RCTTestModule = require("NativeModules").TestModule;
4+
var React = require("react-native");
5+
var CodePushSdk = require("react-native-code-push");
6+
var NativeBridge = require("react-native").NativeModules.CodePush;
77
var { NativeAppEventEmitter } = require("react-native");
88

99
var {
@@ -85,17 +85,17 @@ var DownloadProgressTest = React.createClass({
8585
}
8686

8787
return (
88-
<View style={{backgroundColor: 'white', padding: 40}}>
88+
<View style={{backgroundColor: "white", padding: 40}}>
8989
<Text>
90-
{this.constructor.displayName + ': '}
91-
{this.state.done ? 'Done' : 'Testing...'}
90+
{this.constructor.displayName + ": "}
91+
{this.state.done ? "Done" : "Testing..."}
9292
</Text>
9393
{progressView}
9494
</View>
9595
);
9696
}
9797
});
9898

99-
DownloadProgressTest.displayName = 'DownloadProgressTest';
99+
DownloadProgressTest.displayName = "DownloadProgressTest";
100100

101101
module.exports = DownloadProgressTest;

Examples/CodePushDemoApp/CodePushDemoAppTests/DownloadProgressTests/DownloadProgressTestApp.ios.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
'use strict';
1+
"use strict";
22

3-
var React = require('react-native');
3+
var React = require("react-native");
44

55
var {
66
AppRegistry,
@@ -12,7 +12,7 @@ var {
1212
} = React;
1313

1414
var TESTS = [
15-
require('./DownloadProgressTest')
15+
require("./DownloadProgressTest")
1616
];
1717

1818
TESTS.forEach(
@@ -60,20 +60,20 @@ var DownloadProgressTestApp = React.createClass({
6060

6161
var styles = StyleSheet.create({
6262
container: {
63-
backgroundColor: 'white',
63+
backgroundColor: "white",
6464
marginTop: 40,
6565
margin: 15,
6666
},
6767
row: {
6868
padding: 10,
6969
},
7070
testName: {
71-
fontWeight: '500',
71+
fontWeight: "500",
7272
},
7373
separator: {
7474
height: 1,
75-
backgroundColor: '#bbbbbb',
75+
backgroundColor: "#bbbbbb",
7676
}
7777
});
7878

79-
AppRegistry.registerComponent('DownloadProgressTestApp', () => DownloadProgressTestApp);
79+
AppRegistry.registerComponent("DownloadProgressTestApp", () => DownloadProgressTestApp);

0 commit comments

Comments
 (0)