We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent7a62c68 commit689d83fCopy full SHA for 689d83f
lib/components/Page/Hints/index.js
@@ -6,10 +6,9 @@ var HintButton_1 = require('./HintButton');
6
varhelp_1=require('material-ui/svg-icons/action/help');
7
varstyles={
8
position:'relative',
9
-margin:'0 20px -8px 20px',
+margin:'5px auto 10px',
10
width:'360px',
11
textAlign:'center',
12
-zIndex:'0',
13
};
14
varHints=function(_a){
15
vartask=_a.task,hintPosition=_a.hintPosition;
lib/components/Page/PageToolbar/index.js
@@ -5,8 +5,8 @@ var ToggleLog_1 = require('./ToggleLog');
5
varSave_1=require('./Save');
varContinue_1=require('./Continue');
-zIndex:'1000',
-position:'fixed',
+zIndex:'5',
+position:'relative',
bottom:'0px',
right:'0px',
height:'60px',
lib/components/Page/ProgressBar/index.js
@@ -3,7 +3,8 @@ var React = require('react');
3
varLinearProgress_1=require('material-ui/LinearProgress');
4
varstyle={
height:'10px',
-zIndex:'10',
+margin:'0',
varProgressBar=function(_a){
vartaskPosition=_a.taskPosition,taskLength=_a.taskLength,completed=_a.completed;
lib/components/Tutorials/LoadTutorials/index.js
@@ -16,14 +16,14 @@ var __metadata = (this && this.__metadata) || function (k, v) {
16
varReact=require('react');
17
varreact_redux_1=require('react-redux');
18
varactions_1=require('../../../actions');
19
-varFlatButton_1=require('material-ui/FlatButton');
+varRaisedButton_1=require('material-ui/RaisedButton');
20
varLoadTutorials=(function(_super){
21
__extends(LoadTutorials,_super);
22
functionLoadTutorials(){
23
_super.apply(this,arguments);
24
}
25
LoadTutorials.prototype.render=function(){
26
-return(React.createElement(FlatButton_1.default,{label:'Check for Tutorials',secondary:true,onTouchTap:this.props.tutorialsFind}));
+return(React.createElement(RaisedButton_1.default,{label:'Check for Tutorials',secondary:true,onTouchTap:this.props.tutorialsFind}));
27
28
LoadTutorials=__decorate([
29
react_redux_1.connect(null,function(dispatch){
lib/components/Tutorials/SelectTutorial/index.js
@@ -41,8 +41,6 @@ var SelectTutorial = (function (_super) {
41
return{
42
selectTutorial:function(name){
43
dispatch(actions_1.tutorialSet(name));
44
-dispatch(actions_1.progressLoad());
45
-dispatch(actions_1.routeSet('progress'));
46
},
47
48
}),
src/components/Page/Hints/index.tsx
@@ -6,10 +6,9 @@ import Help from 'material-ui/svg-icons/action/help';
conststyles={
constHints:React.StatelessComponent<{
src/components/Page/PageToolbar/index.tsx
@@ -5,8 +5,8 @@ import Save from './Save';
importContinuefrom'./Continue';
src/components/Page/ProgressBar/index.tsx
@@ -3,7 +3,8 @@ import LinearProgress from 'material-ui/LinearProgress';
conststyle={
constProgressBar:React.StatelessComponent<{
src/components/Tutorials/SelectTutorial/index.tsx
@@ -18,8 +18,6 @@ function displayName(name: string): string {
selectTutorial:(name:string)=>{
dispatch(tutorialSet(name));
-dispatch(progressLoad());
-dispatch(routeSet('progress'));
})