Skip to content
Snippets Groups Projects
Commit 3e46a0ee authored by Glenn Vorhes's avatar Glenn Vorhes
Browse files

update react slider controls

parent 4bd63ab2
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,7 @@ var Slider = (function (_super) {
this.step = parseFloat(this.el.step);
this.startButton = document.getElementById(this.startUid);
this.stopButton = document.getElementById(this.stopUid);
this.stopButton.style.display = 'none';
this.previousButton = document.getElementById(this.previousUid);
this.nextButton = document.getElementById(this.nextUid);
this.intervalSelect = document.getElementById(this.intervalUid);
......
This diff is collapsed.
......@@ -51,6 +51,7 @@ export class Slider extends React.Component<iSlider, null> {
this.step = parseFloat(this.el.step);
this.startButton = document.getElementById(this.startUid) as HTMLButtonElement;
this.stopButton = document.getElementById(this.stopUid) as HTMLButtonElement;
this.stopButton.style.display = 'none';
this.previousButton = document.getElementById(this.previousUid) as HTMLButtonElement;
this.nextButton = document.getElementById(this.nextUid) as HTMLButtonElement;
this.intervalSelect = document.getElementById(this.intervalUid) as HTMLSelectElement;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment