Skip to content

Commit 567cdf8

Browse files
committed
update package.json and progress bar percent var
1 parent 93342a0 commit 567cdf8

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@
1111
"codemirror": "^4.13.0",
1212
"frylord": "^0.5.0",
1313
"holovisor": "^0.2.0",
14-
"iggins": "^0.1.0",
14+
"iggins": "^0.2.1",
1515
"irken": "^0.6.0",
1616
"lodash": "^3.9.1",
1717
"react": "^0.13.1",
1818
"react-loader": "^1.2.0",
1919
"react-material": "git://github.com/iceddev/react-material#fake-release-13",
2020
"react-mfb-iceddev": "^0.1.0",
21-
"react-select": "^0.4.0",
2221
"react-style": "^0.4.0",
2322
"skrim": "0.0.3",
2423
"snacks": "^0.2.0",

plugins/sidebar/overlays/download.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class DownloadOverlay extends React.Component {
138138
<div style={styles.overlayDevicesBottom}>
139139
<div style={styles.overlayLoadingContainer}>
140140
<Button onClick={this.reloadDevices}>Reload Devices</Button>
141-
<Progress setComplete={this.state.progress} />
141+
<Progress percent={this.state.progress} />
142142
</div>
143143
<div style={styles.overlayButtonContainer}>
144144
<Button onClick={this.onAccept}>Download</Button>

plugins/sidebar/overlays/progress.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Progress extends React.Component {
88

99
render(){
1010

11-
var setComplete = {width: this.props.setComplete + '%'};
11+
var percent = {width: this.props.percent + '%'};
1212

1313
return (
1414
<div style={styles.progressContainerStyle}>

0 commit comments

Comments
 (0)