This repository was archived by the owner on Apr 8, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ var HintButton_1 = require('./HintButton');
66var help_1 = require ( 'material-ui/svg-icons/action/help' ) ;
77var styles = {
88 position : 'relative' ,
9- margin : '-5px 20px' ,
9+ margin : '0 20px -8px 20px' ,
1010 width : '360px' ,
1111 textAlign : 'center' ,
1212 zIndex : '0' ,
Original file line number Diff line number Diff line change 22var React = require ( 'react' ) ;
33var LinearProgress_1 = require ( 'material-ui/LinearProgress' ) ;
44var style = {
5- height : '10px'
5+ height : '10px' ,
6+ zIndex : '10' ,
67} ;
78var ProgressBar = function ( _a ) {
89 var taskPosition = _a . taskPosition , taskLength = _a . taskLength , completed = _a . completed ;
Original file line number Diff line number Diff line change 11"use strict" ;
22var check_system_1 = require ( './check-system' ) ;
33var store_1 = require ( '../../store' ) ;
4- var check_1 = require ( '../tutorials /check' ) ;
4+ var check_1 = require ( '../tutorial-list /check' ) ;
55var result = function ( x ) { return x ; } ;
66function allTrue ( obj ) {
77 return Object . values ( obj ) . every ( function ( x ) { return x === true ; } ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import Help from 'material-ui/svg-icons/action/help';
66
77const styles = {
88 position : 'relative' ,
9- margin : '-5px 20px' ,
9+ margin : '0 20px -8px 20px' ,
1010 width : '360px' ,
1111 textAlign : 'center' ,
1212 zIndex : '0' ,
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ import * as React from 'react';
22import LinearProgress from 'material-ui/LinearProgress' ;
33
44const style = {
5- height : '10px'
5+ height : '10px' ,
6+ zIndex : '10' ,
67} ;
78
89const ProgressBar : React . StatelessComponent < {
Original file line number Diff line number Diff line change 11import { npmMinVersion , nodeMinVersion } from './check-system' ;
22import store from '../../store' ;
3- import { searchForTutorials } from '../tutorials /check' ;
3+ import { searchForTutorials } from '../tutorial-list /check' ;
44
55const result = x => x ;
66function allTrue ( obj : Object ) : boolean {
You can’t perform that action at this time.
0 commit comments